汇编“...”中类型“..”中的方法“add_PropertyChanged”没有实现

时间:2013-05-02 10:01:58

标签: c# asp.net gridview asp.net-mvc-2 dataset

我正在研究MVC项目并进行跟踪以从数据库中检索数据。 我在运行applikation时得到的这个问题

  

异常详细信息:System.TypeLoadException:Method   类型'~BI.Production.ProductionOrderItem'中的'add_PropertyChanged'   来自汇编'〜.BI.Production,Version = 1.0.0.0,Culture = neutral,   PublicKeyToken = null'没有实现。

当我在ASP项目上测试它时没有问题,只在MVC上得到了问题

这是我的控制器

  public class ProdukterController : Controller
{

    public ActionResult Index()
    {
     SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString.ToString());

     ProductionOrderList produkter = ProductionOrderReg.GetProductionOrders(conn, new Guid("28937bcc-6eaf-4b5a-a789-fadff99403cd"));

    ViewData["produkter"] = produkter;
        return View();
    }

这是我的观点,Gridview

protected void Page_Load(object sender, EventArgs e)
{
    GridView1.DataSource = ViewData["produkter"];
    GridView1.DataBind();
}

0 个答案:

没有答案