I have two entities, each from a different database and therefore different edmx files. There is, however, an infered relationship between them.
Foo
has many Bar
s for example.
What's the easiest way to do this join in the EntityFramework, with fewest database calls?
Thanks.