I am defining a model in EF4 CTP5 where I need to map an inherited entity only when the value of an id is greater than 0. the code looks like this.
public class Parent
{
public int ID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
public class Child : Parent
{
public int SchoolID { get; set; }
}
In the OnModelCreating method...
modelBuilder.Entity<Parent>().Map<Child>(
reg =>
{
reg.MapInheritedProperties();
reg.Requires("SchoolID").HasValue((int)<value greater than 0); <== Pseudo code
}).ToTable("Users");
Is this sort of thing possible? If not, is it possible to ignore the discriminator altogether?