I have a legacy database. We are thinking about implementing EF, and an OOP class structure. How would I map something like below using Code First?

This is my class definition:

public class Customer
{
    public int PersonID { get; set; }
    public string Name { get; set; }
    public List<of Address> Addresses{ get; set; }

    public Customer()
    {
        this.Addresses= new List<of Address>();
    }
}

public class Address
{
    public string StreetAddress { get; set; }
}

My table definition is:

tblCustomers(PersonID INT Primary Key, Name VARCHAR(50), Address1 VARCHAR(50), Address2 VARCHAR(50))
link|improve this question

70% accept rate
You can't map it as a List of Addresses. – Eranga Dec 15 '11 at 7:35
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.