У меня проблема с отображением результата из лямбда-выражения linq в представление.
Вот мой код:
var idSearchJoin = payoutdb.payout_transaction // your starting point - table in the "from" statement
.Join(payoutdb.payout_remittance, // the source table of the inner join
transaction => transaction.transid, // Select the primary key (the first part of the "on" clause in an sql "join" statement)
remit => remit.transid, // Select the foreign key (the second part of the "on" clause)
(transaction, remit) => new { Transaction = transaction, Remit = remit }) // selection
.Where(transactremit => transactremit.Transaction.senderRefId == searchTxt);
Эта проблема усложнилась из-за объединения, которое я использовалвот так, теперь я не знаю, как я буду передавать данные в представление, как я сделал без объединения.