Skip to content
Prev Previous commit
Next Next commit
skip if not autosave on store
  • Loading branch information
petero-dk committed Oct 17, 2022
commit dd18af6e34fe2653f0fa87686bedcf3c2d6bf909
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ internal static class TableEntityDynamic

if (virtualTypeAttribute != null)
virtualTypeAttribute.WriteProperty<T>(property, model, builder);
else if (relatedTableAttribute != null && relatedTableAttribute.)
else if (relatedTableAttribute != null && relatedTableAttribute.AutoSave)
// TODO: Implicit save rowkey and partitionkey (will need to get from saved model)
await SaveRelatedTable(context, property.GetValue(model, null), property);
else
Expand Down