私はLinqで新しく、このSQLクエリをLinq形式に変換したいと思います。複数の操作方法Linqでの選択場所
これは、SQL形式
select *
from investorwallets iw
where transactionid in
(select investordepositid from investordeposits)
or transactionid in
(select withdrawalid from investorwithdrawals)
or transactionid in
(select paymentdistributionid from paymentdistributions)
である私もこのSO質問に見てきたが、私のために
EDIT運
は、これは私が試したものではありません。私はそれをテストするためにLinqpadを使用する
from iw in Investorwallets
where (
from id in Investordeposits // I got error from here
select id.investordepositid
)
誰でも手伝ってくれますか?
はあなたに
はIW( '.Containsを追加します。トランザクションid) '。そして、 '||'で他のcriteriasと同様のことをしてください。 –