3

Dynamic 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

0

Scottによるこのブログを参照してください。問題を整理するのに役立つはずです

于 2013-07-22T14:05:33.057 に答える
0

表示されているエラーは、LINQ to SQL ではなく EF を使用していることを示しているようです。その場合はタグを修正してください。文字列を使用する場合は、 DBSet を使用する代わりに、 ObjectQuery の Whereメソッドを使用することを検討してください。または、 EntitySQLを使用してクエリ全体を作成することもできます。

于 2013-07-22T17:23:53.117 に答える