我有一个模特:
public class Delivery
{
public Guid Id { get; set; }
public string Name { get; set; }
public Guid BusinessId { get; set; }
public virtual ICollection<PriceDisc> PriceDisc { get; set; }
}
public class PriceDisc
{
public Guid Id { get; set; }
public decimal Amount { get; set; }
public Guid BusinessId { get; set; }
}
如何在Delivery.BusinessId和PriceDisc.BuissnessId之间创建一对多的关系?
由于
答案 0 :(得分:0)
您已经在他们之间创建了一对多的关系Delivery
在您的代码中保存了PriceDisc
的集合,因此对于一个Delivery.BusinessId
,您收集了PriceDisc.BusinessId