I am getting this error while querying a linq using two tables from two different edmx files. The query runs as,
var query = (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
{
Id = a.Id,
CompanyId = (from c in db2.Company
where s.Id == a.Id
select
new { c.CompanyId })
});
db1 and db2 are instances to two different edmx files.
Any ideas to solve this issue?