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。 谢谢,