实体框架更新语句导致错误
本文关键字:错误 语句 框架 更新 实体 | 更新日期: 2023-09-27 18:07:59
public bool UpdateValues(String impR, String actR, String proR, String impV, String magV)
{
bool IsInserted = false;
try
{
MatrixValues c = cecbContext.MatrixValues.First(i => i.actv_reference == actR); // primary key
c = cecbContext.MatrixValues.First(i => i.impt_reference == impR); // primary key
c = cecbContext.MatrixValues.First(i => i.proj_reference == proR); // primary key
c.mtrxV_importance = double.Parse(impV); // updated value
c.mtrxV_magnitude = double.Parse(magV); // updated value
cecbContext.SaveChanges(); // getting an error here!!!
IsInserted = true;
}
catch (Exception)
{
IsInserted = false;
}
return IsInserted;
}
尝试更新详细信息时出现错误
错误是
违反了PRIMARY KEY约束'PK_MatrixValues'。无法在对象'dbo.MatrixValues'中插入重复键。
多次设置对象c
;如果最后一句话足够;那就不要用以前的;如果要使用多个条件选择c
对象,则需要更改以下行;
MatrixValues c = cecbContext.MatrixValues.First(i => i.actv_reference == actR); // primary key
c = cecbContext.MatrixValues.First(i => i.impt_reference == impR); // primary key
c = cecbContext.MatrixValues.First(i => i.proj_reference == proR); // primary key
:
MatrixValues c = cecbContext.MatrixValues.First(i => i.actv_reference == actR && c.impt_reference == impR && c.proj_reference == proR);
违反了PRIMARY KEY约束'PK_MatrixValues'。不能在对象'dbo '中插入重复键。MatrixValues '
表示该字段包含主键。它不允许重复条目