Hello,
I have two EDMs in my application that I need to somehow join. The problem I need to solve is how to, essentially, create a inner join between two tables in different databases on different database servers. So, for example, I have a table of studentids in a table on one db and I need to only return student records from a table in a different db that have a corresponding id in the other db. Is there a way to accomplish this in linq to entities? Thanks in advance! rbr
