I'm going to download this question from a previous question I asked:
LINQ to SQL: multiple joins in multiple columns. Is it possible?
So, I have a LINQ query:
var query =
from t1 in myTABLE1List
join t2 in myTABLE1List
on new { t1.ColumnA, t1.ColumnB } equals new { t2.ColumnA, t2.ColumnB }
join t3 in myTABLE1List
on new { t2.ColumnA, t2.ColumnB } equals new { t3.ColumnA, t3.ColumnB }
select new {t1.ColumnA, t2.ColumnA, t3.ColumnA }
How can i solve this?
source
share