Error: “The specified LINQ expression contains references to queries that are associated with different contexts”

后端 未结 3 1162
眼角桃花
眼角桃花 2020-11-27 17:26

I am receiving the error shown in the title from a LINQ query that includes two tables from two different edmx files. Here is the query:

var query = (from a          


        
相关标签:
3条回答
  • 2020-11-27 17:47

    You either need to add the second table to the model of the first context. If this is in multiple databases, you need to do the secondary lookup client-side using a Linq to Objects join.

    0 讨论(0)
  • 2020-11-27 17:48

    You'll have to perform two database queries:

    var IDs =  (from a in db1.Table1 
                join b in db1.Table2 on a.Id equals b.Id 
                orderby a.Status 
                where b.Id == 1 && a.Status == "new" 
                select new a.Id).ToArray();
    
    var query = from c in db2.Company
                join a in IDs on c.Id equals a.Id
                select new { Id = a.Id, CompanyId = c.CompanyId };
    

    The .ToArray() is crucial. It prevents EF from trying to execute the combined query (which will fail since it uses two different contexts). You can use .AsEnumerable() if you'd rather keep lazy loading.


    And your follow-up question:

    Is there any other way to make the LINQ query more optimized? That is, to perform the action in a single LINQ query itself?

    In order for your original query to successfully run, it must use only a single data context, which means all the data must be available from a single EDMX, which in turn means a single connection string. There are several ways you can achieve that:

    • If both tables are on the same database, add them both to a single EDMX.
    • If they're on different databases but on the same instance, create a view on one of the databases that selects from the table on the other database, then add the local table and view to a single EDMX.
    • If they're on different instances/servers, created a linked server, then create a view of the table on the linked server, then add the local table and view to a single EDMX.
    0 讨论(0)
  • 2020-11-27 17:49

    You have to create manually EntityConnection filled with resources from all .EDMXs you want to use. You can do it either by adding connection to app.config or programmaticaly. Then you can create DBContext using prepared EntityConnection.

    method a)

    <add name="MyConnection"
    connectionString="metadata=res://*/Entities.ModuleA.csdl|res://*/Entities.ModuleA.ssdl|res://*/Entities.ModuleA.msl|res://*/Entities.ModuleB.csdl|res://*/Entities.ModuleB.ssdl|res://*/Entities.ModuleB.msl;
    provider=System.Data.SqlClient;provider connection string=&quot;MyConnectionString&quot;"
    providerName="System.Data.EntityClient" />
    
    using (EntityConnection oEntityConnection =
        new EntityConnection("name=MyConnection"))
    {
        using(DbContext oDBContext = new DbContext(oEntityConnection))
        {
            //your code - available are entities declared in Entities.ModuleA and Entities.ModuleB
        }
    }
    

    method b)

     using (EntityConnection oEntityConnection =
            new EntityConnection(new MetadataWorkspace(
            new string [] { 
    "res://Entities.ModuleA/", 
    "res://Entities.ModuleB/" 
    },
            new Assembly[] { 
    Assembly.GetAssembly(typeof(Entities.ModuleA.AnyType)),
    Assembly.GetAssembly(typeof(Entities.ModuleB.AnyType)) 
    }
            )))
        {
            using(DbContext oDBContext = new DbContext(oEntityConnection))
            {
                //your code - available are entities declared in Entities.ModuleA and Entities.ModuleB
            }
        }
    
    0 讨论(0)
提交回复
热议问题