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“t.AccountID.ToString()”动态传递的 AccountID 进行过滤,我不想像我一样使用子查询大量的附件,所以我正在寻找一个更加入类型的解决方案,其中包含动态 Linq 和表达式树,并动态传递帐户 ID。谢谢,