Kann mir jemand helfen, Gleichheitsoperator in C# linq zu überschreiben?
Das ist das Problem:
var temp =
from t1 in table1
join t2 in table2 on t1.column1 **equals** t2.column2
select t1.column4;
Es ist erwähnenswert, dass t1.column1
y t2.column2
sind tatsächlich einige spezifische Typen. Wenn jemand mehr Informationen benötigt, lassen Sie es mich bitte wissen.