Мне нужно отобразить следующую иерархию классов, используя Entity Framework 4.3.
public abstract class Rule
{
public long Id {get;set;}
public abstract ICollection<Parameter> Parameters {get;set;}
}
public class Entity1
{
public long Id {get;set;}
public ICollection<Rule> Rules {get;set;}
// Map Rule to table Entity1Rules and
// Parameters to table Entity1RuleParameters
}
public class Entity2
{
public long Id {get;set;}
public ICollection<Rule> Rules {get;set;}
// Map Rule to table Entity2Rules and
// Parameters to table Entity2RuleParameters
}
Спасибо