I have one table but I'd like to map it as a composition between two classes....Suppose I have a Customer table with following fields: Id, Name, ExtraDataValue, ExtraDataDate....class Customer
{
public int Id {get;set;}
public string Name {get;set;}
...