传递的主键值的数量必须与实体上定义的主键值的数量相匹配

时间:2014-11-26 13:32:27

标签: .net sql-server asp.net-mvc entity-framework edmx

我在SQL Server中创建了一个视图,其中包含来自不同表的最重要的列。 将表的内容打印到ASP.NET MVC视图工作正常,但是当我想获取单个记录的详细信息时,问题就出现了。

  

传递的主键值的数量必须与实体上定义的主键值的数量匹配。

我导航到执行此操作的特定记录:

@Html.ActionLink("Details", "Details", new {  id=item.Record_number  })

记录号是主键。我通过右键单击.edmx模型中的特定变量手动设置此项。然后我尝试使用以下内容获取特定数据:

    //
    // GET: /Record/Details/5
    public ActionResult Details(int id = 0)
    {
        try
        {
            RecordDataView record = db.RecordDataView.Find(id); //HERE THE ERROR OCCUR
            if (record == null)
            {
                return HttpNotFound();
            }
            return View(record);
        }
        catch(EntityException)
        {
            return RedirectToAction("NoDatabaseConnection", "Home");
        }
    }

模型看起来像这样:

namespace Implant.Database
{
    using System;
    using System.Collections.Generic;

    public partial class RecordDataView
    {
        public int Record_number { get; set; }
        public Nullable<System.DateTime> DOB { get; set; }
        public Nullable<System.DateTime> Record_date { get; set; }

        /** rest of code omitted */ 
    }
}

目前我使用以下代码使其全部工作。但我不觉得这是一种非常好的方式或有效率。我非常好奇如何解决上面的失败!

    //
    // GET: /Record/Details/5
    public ActionResult Details(int id = 0)
    {
        var record = from r in db.RecordDataView
                     select r;
        if (id != 0)
        {
            record = record.Where(r => r.Record_number == id);
        }
        RecordDataView rec = record.ToList().First(); 

        return View(rec);   
    }

有人知道为什么会出现这种错误?感谢帮助!

2 个答案:

答案 0 :(得分:24)

如果您在.edmx中设置主键,您也应该更新数据库,因为您的模型中有PK而不是数据库中的PK。 更新:不适用于观看次数。

对于观看次数,请使用.SingleOrDefault代替Find()

在此方案中,更改以下行:RecordDataView record = db.RecordDataView.Find(id); 对于以下内容:RecordDataView recorddataview = db.RecordDataView.SingleOrDefault(m => m.Record_number == id);

答案 1 :(得分:0)

如果您的数据库表未指定主键字段,则您的edmx模型将假定每个字段都是键。因此,请确保您的数据库和实体模型说同样的事情。

如果您的模型和数据库正确指定了主键,那么您可以使用.Find(),它将起作用。