Complex type: multiple instances in one model?
问题 Is there a way to have multiple instances of complex type inside the same model using Fluent api model builder? public class Contact { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public Address PersonalAddress { get; set; } public Address BusinessAddress { get; set; } } public class Address { public string Street{ get; set; } public string City{ get; set; } public string PostalCode{ get; set; } } protected override void