ASP MVC は初めてで、関連する複雑なデータ モデルを含むプロジェクトに取り組んでいます。そのため、関係に取り組んでいる間、私はオンラインで見て、asps.net のブログで次の例を入手しました。
namespace CodeFirst.Associations.OneToOneFK
{
public class User
{
public int UserId { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public int BillingAddressId { get; set; }
public int DeliveryAddressId { get; set; }
public Address BillingAddress { get; set; }
public Address DeliveryAddress { get; set; }
}
public class Address
{
public int AddressId { get; set; }
public string Street { get; set; }
public string City { get; set; }
public string PostalCode { get; set; }
}
}
だから私の疑問は、int BillingAddressID と Address BillingAddress の両方が本当に必要なのかということです。また、AddressID を使用しない場合、アドレスをユーザーに関連付けるにはどうすればよいでしょうか。
助けてくれてありがとう。:)