I have a class Contact (base class),a class called Customer and a class called Supplier. Customer and supplier class both derive from Contact.
Customer has a 0..n relat
Another solution if you don't like to use the set from Iesi collections
public class Customer : Contact { public ICollection Orders { get; private set; } }
And the mapping like this: