表达树和连接

时间:2013-05-15 11:45:11

标签: .net linq expression-trees dynamic-linq

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

0 个答案:

没有答案