我有一些问题用一对多的关系更新数据。这是我的实体
public class Customer : Entity
{
public Customer()
{
ContactPersons = new List<ContactPerson>();
}
/// <summary>
/// 客户编号
/// </summary>
public string Code { get; set; }
/// <summary>
/// 客户名称
/// </summary>
public string Name { get; set; }
public ICollection<ContactPerson> ContactPersons { get; set; }
}
/// <summary>
/// 联系人实体
/// </summary>
public class ContactPerson : Entity
{
/// <summary>
/// 姓名
/// </summary>
public string FullName { get; set; }
public string Email { get; set; }
public string QQ { get; set; }
public virtual Customer Customer { get; set; }
}
在配置类中,代码为:
HasMany(f => f.ContactPersons).WithRequired(f => f.Customer).Map(f => f.MapKey("CustomerId")).WillCascadeOnDelete(true);
我认为映射是正确的,添加或删除工作正常,只有更新抛出异常。
AssociationSet 中的“Customer_ContactPersons”被“删除”。如果有多个约束,则对应的“Customer_ContactPersons_Target”也必须是“Deleted”。
public void Update(CustomerEditViewModel model)
{
var customerDb = _customerRep.GetAll().NotLazy(f => f.ContactPersons).SingleOrDefault(f => f.Id == model.Id);
//customerDb.ContactPersons.Clear(); can not work either!!
var count = customerDb.ContactPersons.Count;
for (var i = 0; i < count; i++)
{
customerDb.ContactPersons.Remove(customerDb.ContactPersons.ElementAt(i));
count--;
}
_customerRep.Update(customerDb);
}
我想清除客户中的联系人列表,如何...