¡@

Home 

c# Programming Glossary: table_1

LINQ to SQL: Multiple joins ON multiple Columns. Is this possible?

http://stackoverflow.com/questions/5307731/linq-to-sql-multiple-joins-on-multiple-columns-is-this-possible

ON multiple Columns. Is this possible Given A table named TABLE_1 with the following columns ID ColumnA ColumnB ColumnC I have.. columns ID ColumnA ColumnB ColumnC I have SQL query where TABLE_1 joins on itself twice based off of ColumnA ColumnB ColumnC ... look something like this Select t1.ID t2.ID t3.ID From TABLE_1 t1 Left Join TABLE_1 t2 On t1.ColumnA t2.ColumnA And t1.ColumnB..