2
考慮一個具有代表客戶的徽標中的Resource
對象Customer
實體:HOWTO地圖的值對象2.0
public class Customer
{
public Guid Id { get; set; }
public string CompanyName { get; set; }
public Resource Logo { get; set; }
}
public class Resource
{
public string Uri { get; set; }
public string Name { get; set; }
}
這是我迄今爲止嘗試過,但得到的錯誤,因爲標誌是一個複雜的對象:
var customer = modelBuilder.Entity<Customer>().ToTable("Customers");
customer.HasKey(c => c.Id);
customer.Property(c => c.CompanyName).HasColumnName("Company");
customer.Property(c => c.Logo);
我怎麼能存儲資源與EF核心2.0爲值對象內客戶表?
這就是我一直在尋找!謝謝! (可以在4分鐘內接受答案) –