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
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.