1
Expression<Func<Account, IEnumerable<Attachment>>> attachments =  t => attachmentBuilder.Populate("COMPANYNAME", t.AccountID.ToString());

 var q = cxt.Accounts.Select(e => new
 {
    AccountID = e.AccountID,
        Description = e.AccountDescription,
 });

私が理想的に望むのは、添付ファイル式 (結果) を q (accounts-IEnumerable) に結合することです。これにより、UI から動的に渡される AccountID でフィルター処理できるようになります。「t.AccountID.ToString()」添付ファイルが大量にあるため、アカウント ID を動的に渡す動的 Linq および式ツリーを使用した、より結合タイプのソリューションを探しています。ありがとう、

4

0 に答える 0