Can somebody help me to override equals operator in C# linq?
This is the problem:
var temp = from t1 in table1 join t2 in table2 on t1.column1 equals t2.column2 select t1.column4;
it is worth mentioning that t1.column1 and t2.column2 are actually some specific types. If anyone needs more information, please let me know. Tnx