这是我的代码。
modelBuilder.Entity<ProductType>()
.HasRequired(x => x.Product)
.WithMany(x => x.ProductTypes)
.HasForeignKey(x => x.ProductId);
如果 Product 的 IsDiscount 属性为真,我想设置 ProductType 的属性。
这是我的代码。
modelBuilder.Entity<ProductType>()
.HasRequired(x => x.Product)
.WithMany(x => x.ProductTypes)
.HasForeignKey(x => x.ProductId);
如果 Product 的 IsDiscount 属性为真,我想设置 ProductType 的属性。