Top "Table-per-type" questions

An inheritance model used by Entity Framework, one of Microsoft's ORM technologies

EF CodeFirst THT - Column 'Id' specified as part of this MSL does not exist in MetaDataWorkspace

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-type
Unable to save Entity Framework Inherited types

I 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-type
How to implement inheritance Table-Per-Type in Entity Framework 4.3 via Code First approach?

I 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-type
Table-per-type inheritance with EF 4.1 Fluent Code First

I 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