I am trying to write a project using the code-first approach and I have run into the following problem
public class BaseType
{
[Key]
public int id { get; set; }
public string description { get; set; }
}
public class Type1 : BaseType
{
public decimal price { get; set; }
}
public class mycontext : DbContext
{
public DbSet<BaseType> basetypes { get; set; }
public DbSet<Type1> type1 { get; set; }
}
when I run the application and I create an object Type1 and use mycontext.type1.ADD(mytype1object); and I look at the database the table for Type one has the correct field but the parent table "basetypes" also has a price field.
Do I have to ignore the field explicitly?
Any suggestions?