我有一個類似於下面的結構。Code First Model Mapping
public class Price
{
public decimal Amount {get; set;}
public string Currency {get; set;}
}
public class Product : BaseEntity
{
public int Id {get; set;}
public string Name {get; set;}
public Price Price {get; set;}
}
我想要一個數據庫中的Product表,它將把Price分解爲它的屬性。例如;
**ProductTable**
--Id
--Name
--Amount
--Currency
然後,當我從數據庫中的產品,它會自動綁定金額和貨幣到價格產品的對象。我應該如何使用實體框架代碼優先來構造這個結構?
_If_延遲加載啓用,這是默認。 – CodeCaster