这是我的代码。
modelBuilder.Entity<ProductType>()
.HasRequired(x => x.Product)
.WithMany(x => x.ProductTypes)
.HasForeignKey(x => x.ProductId);
如果Product的IsDiscount属性为true,我想设置ProductType属性。
答案 0 :(得分:1)
你的意思是这样吗
Product product = new Product
{
Name = "test",
Price = 34.5,
....
}
答案 1 :(得分:0)
我创建了代理类,并使用它们来编写属性值。