How to put multiple on in LINQ Like
var retailTransactionDiscountTrans =
(from t1 in context.RETAILTRANSACTIONPAYMENTTRANS
join t2 in context.RETAILTRANSACTIONTABLEs
on t1.TRANSACTIONID equals t2.TRANSACTIONID && t1.STORE equals t2.STORE)....;
I just want to include other ON in LINQ for that join.