zoukankan      html  css  js  c++  java
  • 【转】Entity Framework中出现"已有打开的与此命令相关联的 DataReader,必须首先将它关闭。"的解决方案

         from:http://www.cnblogs.com/china0zzl/archive/2009/08/06/1540025.html

         前期搭建一个ASP.NET MVC应用的框架过程中,使用了Entity Framework框架作为数据处理部分。其中在Linq to Entity操作过程中偶出现 “已有打开的与此命令相关联的 DataReader,必须首先将它关闭。”该问题,经查善友老大的文章找到一链接,得以解决该问题:http://www.netknowledgenow.com/blogs/onmaterialize/archive/2006/09/20/Fixing-the-_2200_There-is-already-an-open-DataReader-associated-with-this-Command-which-must-be-closed-first_2E002200_-exception-in-Entity-Framework.aspx

          下面摘录该博文内容:

    Fixing the "There is already an open DataReader associated with this Command which must be closed first." exception in Entity Framework

        Once you get your model, database and mapping metadata files configured correctly for Entity Framework, one of the first exceptions that you're likely to face is the DataReader already open exception. It will normally surface when you're iterating over a result set and then lazy loading a child collection. In the following example I have a Contact entity that has a Phone collection. If I lazy load the Phones then I'll get the DataReader exception.

    var contacts = from c in db.Contact
    select c;
    foreach (Contact c in contacts)
    {
        if (c.Phones.IsLoaded == false)
            c.Phones.Load();
        if (c.Phones.Count > 0)
        {
            Console.WriteLine(c.LastName);
            foreach (ContactPhone p in c.Phones)
            {
                Console.WriteLine("\t"+p.ContactPhoneId);
            }
        }
    }
    

        The reason for the exception is that there is an open data reader while reading in the contacts and then the loading of the child Phone collection is attempting to open another DataReader. By default, the SqlClient ADO.NET driver does not allow this.

        There are two ways to fix this. First, if you are using SQL Server 2005, you can just enable MARS in your connection string.

    add name="YourDBConnectionString" connectionString="metadata=.;
    	provider=System.Data.SqlClient;provider connection string="Data Source=irv-dev-vms05;Initial Catalog=YourDB;Integrated Security=True;
    	MultipleActiveResultSets=true"" providerName="System.Data.Mapping" /
    

        A second option is to read all the results into memory in one shot and close the connection. Then you are free to open another connection to the database to read in the child entities. So how do you control this? The trip to the database does not happen when the LINQ statement is assigned to the var in the code above. Instead, the query to the database happens during the inplicit call to the enumerator of the contacts collection. To force all the contacts to be loaded, simply copy them to a list in memory using the ToList method and then continue the normal processing.

    var contacts = from c in db.Contact
    select c;
    List results = contacts.ToList();
    foreach (Contact c in results)
    {
        if (c.Phones.IsLoaded == false)
            c.Phones.Load();
        if (c.Phones.Count > 0)
        {
            Console.WriteLine(c.LastName);
            foreach (ContactPhone p in c.Phones)
            {
                Console.WriteLine("\t"+p.ContactPhoneId);
            }
        }
    }
    

        This works as expected. Another important realization here is that there is an open connection to the database as long as you are reading in records through that enumerator! A novice programmer may unwittingly include a massive number of time consuming operations within the foreach loop (calling a web service, for example, comes to mind) which will keep the connection to the database open for an inordinate length of time. Of course, you won't fall into that trap.

    ******************************************************

    文中提到解决方案有两种:

    1、数据库为SQL Server 2005版本时,可以在web.config数据库链接串中加入MultipleActiveResultSets=true。

    2、进行重复操作之前,将数据查询结果放入内存中,再进行使用。

    具体解释看上文。

  • 相关阅读:
    bzoj2732[HNOI2012]射箭
    poj1474 Video Surveillance
    bzoj3167[HEOI2013]SAO
    hdu2296 Ring
    bzoj2119 股市的预测
    bzoj2244[SDOI2011]拦截导弹
    bzoj3502[PA2012]Tanie Linie(最大k区间和)
    vijos1859[TJOI2014]电源插排
    比较SQL查询性能 语句
    什么是高内聚低耦合
  • 原文地址:https://www.cnblogs.com/SummerRain/p/2691167.html
Copyright © 2011-2022 走看看