当我从winforms应用程序保存订单时,它可以正常工作。但是当我尝试添加第二个时,SaveChanges()方法抛出异常:
操作失败:无法更改关系,因为一个或多个外键属性不可为空。当对关系进行更改时,相关的外键属性将设置为空值。如果外键不支持空值,则必须定义新关系,必须为外键属性分配另一个非空值,或者必须删除不相关的对象。
我有一个表“Orders”和一个具有foreignkey OrderID的“Orderlines”。
有谁知道为什么会这样?
我知道我的上下文处理并不理想,所以如果这是问题,任何关于如何改变这一点的建议都是非常有必要的!
public class Orders
{
private readonly DataContext _context;
public Orders()
{
_context = EntityContext.Context;
}
public int Save(Order order)
{
if (order.ID > 0)
_context.Entry(order).State = EntityState.Modified;
else
{
_context.Orders.Add(order);
}
_context.SaveChanges();
return order.ID;
}
}
public class EntityContext : IDisposable
{
private static DataContext _context;
public static DataContext Context
{
get
{
if (_context != null)
return _context;
return _context = new DataContext();
}
}
public void Dispose()
{
throw new NotImplementedException();
}
}
编辑1 在例外时间添加订单类和订单屏幕截图
我已将更新完整性设置为CASCADE。
Orderlines是一个关系表。
public partial class Order
{
public Order()
{
this.Orderlines = new HashSet<Orderline>();
}
public int ID { get; set; }
public System.DateTime CreatedDate { get; set; }
public int PaymentType { get; set; }
public Nullable<int> SettlementID { get; set; }
public Nullable<decimal> CashPayment { get; set; }
public Nullable<decimal> BankPayment { get; set; }
public Nullable<int> UserID { get; set; }
public virtual ICollection<Orderline> Orderlines { get; set; }
public virtual Settlement Settlement { get; set; }
}
编辑2 - 部分课程
我有扩展订单和订单线对象的部分类:
public partial class Order
{
public decimal Total
{
get { return Orderlines.Sum(x => x.Quantity*x.Price); }
}
public decimal TotalExMva
{
get { return Orderlines.Sum(x => (x.Quantity*x.Price)/(x.Vat + 1)); }
}
public decimal Mva
{
get { return Total - TotalExMva; }
}
}
public partial class Orderline
{
public decimal Total
{
get { return (Price*Quantity); }
}
public string ProductName
{
get
{
var currentProductId = ProductID;
return new Products().Get(currentProductId).Name;
}
}
}
编辑3 - 订单和产品类
public partial class Orderline
{
public int ID { get; set; }
public int ProductID { get; set; }
public int Quantity { get; set; }
public decimal Price { get; set; }
public decimal Vat { get; set; }
public int OrderID { get; set; }
public virtual Order Order { get; set; }
public virtual Product Product { get; set; }
}
public partial class Product
{
public Product()
{
this.Orderlines = new HashSet<Orderline>();
}
public int ID { get; set; }
public string Name { get; set; }
public string GTIN { get; set; }
public decimal Price { get; set; }
public decimal Vat { get; set; }
public virtual ICollection<Orderline> Orderlines { get; set; }
}
答案 0 :(得分:-1)