An inheritance model used by Entity Framework, one of Microsoft's ORM technologies
I'm using a 'table-per-type' hierarchy in my code-first project (EF5). My derived classes override the default primary-key name to clearly …
c# ef-code-first table-per-typeI have implemented some table-per-type inheritance in my data model (basically have a BaseEntity type with all the base information …
.net entity-framework inheritance savechanges table-per-typeI have this class hierarchy in code: [Table("A")] public class A : IIdentification { public int id { get; set; } } [Table("B")] …
entity-framework ef-code-first table-per-typeI have a pretty straight forward set of database tables, like: Vehicle Id RegNo Car Id (FK of Vehicle.Id) …
entity-framework entity-framework-4 entity-framework-4.1 entity-framework-6 table-per-type