LINQ to SQL - JOIN of tables stored on different servers

  • Thread starter Thread starter Gilbert Tordeur
  • Start date Start date
G

Gilbert Tordeur

Hello,

I work with VB2008 and SQL Server 2000.

I would like to make a JOIN between to SQL tables that are stored on
different servers. How should I write the LINQ statement(s) ?

Thank you for your help.
Gilbert
 
Gilbert said:
Hello,

I work with VB2008 and SQL Server 2000.

I would like to make a JOIN between to SQL tables that are stored on
different servers. How should I write the LINQ statement(s) ?

Thank you for your help.
Gilbert

Gilbert,

I don't think you can do it in Linq. You would have to either create a
view or use a stored procedure to do it and then use the view / SP in
the Linq statement.

LS
 
Gilbert,

Keep in mind that Linq is basicly a querry tool (although it has strong
features to update SQL servers)

Linq to SQL is only a part of Linq.

Cor
 
Back
Top