var list = (from t1 in table1 ✓
join t2 in table2 on t1.xyz equals t2.abc ✓
join t3 in table3 on new { t1.abc , t2.qwe} equals new { t3.abc , t3.qwe}
select new Table
{
XYZ= t1.xyz,
ABC = t1.abc,
QWE= t3.qwe
}).Distinct().ToList();
I want to convert this C# LINQ query to SQL query.
join t3 in table3 on new { t1.abc , t2.qwe} equals new { t3.abc , t3.qwe}
I couldn't convert after this part. Is there anyone who can help me?