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))