I need to fetch records from tables, that are in two diff. databases in two different SQL Servers.
For Instance. Sales DB on server1 and Purchase DB on server2. Both Sales and Purchase DB's have some set of tables say table1 in Sales DB and table2 in Purchase DB. Now, I need to get records from table1 and table2 that are having some common records by joining them.
Using T-SQL i can do it by linking the servers and then quering them.
Please suggest, how can i do it using LINQ to SQL as am'nt aware of it.
Thanks.