0
 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;
    }

尝试更新详细信息时出现错误

错误是

违反主键约束“PK_MatrixValues”。无法在对象“dbo.MatrixValues”中插入重复键。

4

2 回答 2

1

您正在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); 
于 2013-04-06T05:55:47.797 回答
0

违反主键约束“PK_MatrixValues”。无法在对象“dbo.MatrixValues”中插入重复键

这意味着该字段包含主键。它不允许重复的条目

于 2013-04-06T05:54:35.420 回答