You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changed the visibility of the property Id backing field _id in the classes vm.Aspects.Model.DomainEntity and vm.Aspects.Model.DomainValue from private to protected.
This will allow the inheritors to modify the behavior of the property Id, without introducing a new backing field necessarily.
The property Id was applied the attributes KeyAttribute and ColumnAttribute with argument Order=0.
Marked both classes with CLSCompatible(false). This will allow the inheritors to use types like uint or ulong for the properties Id, which are usually mapped to the primary key of the corresponding DB tables. Negative Id-s (PK-s) do not make a lot of sense.