3

我正在尝试根据动态 where 条件加载数据。

string tempQry = string.Empty;
if (!string.IsNullOrEmpty(cusid) && !string.IsNullOrEmpty(mktid))
    tempQry = "x=>x.MarketID==" + mktid + "&& x.MasterCustomerID==" + cusid;
if (string.IsNullOrEmpty(cusid)) 
    tempQry = "x=>x.MarketID==" + mktid;
if (string.IsNullOrEmpty(mktid)) 
    tempQry = "x=>x.MasterCustomerID==" + cusid;

_lstOptInInterest = new LinkedList<OptInInterestArea>(
        (from a in _lstOptInInterest
         join b in _marketoEntities.CustCommPreferences.Where(tempQry)
         on new { CODE = a.Code, SUBCODE = a.SubCode } equals new { CODE = b.Option_Short_Name, SUBCODE = b.Option_Short_Subname }
         into leftGroup
         from b in leftGroup.DefaultIfEmpty()
         select new OptInInterestArea()
         {
             Code = a.Code,
             SubCode = a.SubCode,
             SubCodeDescription = a.SubCodeDescription,
             CodeDescription = a.CodeDescription,
             PrevOptIn = b != null && b.OptedIn == true
         }).ToList());

它给出了编译错误Where(tempQry)

'System.Data.Entity.DbSet<Market.Data.CustCommPreference>' does not contain a definition for 'Where' and the best extension method overload 'System.Linq.Queryable.Where<TSource>(System.Linq.IQueryable<TSource>, System.Linq.Expressions.Expression<System.Func<TSource,bool>>)' has some invalid arguments

如何处理?

4

3 回答 3

9

Where以 lambdas 而不是字符串的形式等待条件,因此您必须稍微重构您的代码(只是下面的一个想法):

IQueryable<CustCommPreference> query = _marketoEntities.CustCommPreferences.AsQueryable();
if (!string.IsNullOrEmpty(cusid)) 
    query = query.Where(x => x.MasterCustomerID == cusid);
if (!string.IsNullOrEmpty(mktid)) 
    query = query.Where(x => x.MarketID == mktid);

然后使用它:

...
join b in query
...
于 2013-07-22T14:04:09.690 回答
0

请参阅Scott的此博客。它应该可以帮助您解决问题

于 2013-07-22T14:05:33.057 回答
0

您看到的错误似乎表明您使用的是 EF 而不是 LINQ to SQL。如果是这种情况,请更正您的标签。如果要使用字符串,请考虑使用ObjectQuery 的 Where方法而不是使用 DBSet。或者,您可以使用EntitySQL构建整个查询。

于 2013-07-22T17:23:53.117 回答