1

ideablade の Predicate Description の where 句に複数の Or および And 操作を追加するにはどうすればよいですか。元。

 List < PredicateDescription > pdList = new List< PredicateDescription >();

 Dictionary< int, List< PredicateDescription>> pdDateList = new Dictionary< int,  List< PredicateDescription>>();

 var pds = pdList.ToArray();

 if (((pds.Length > 0) || (pdDateList.Count > 0)))
 {

     CompositePredicateDescription predicate = null;
     if (pds.Length > 0)
     {
                predicate = PredicateBuilder.And(pds);
     }                    
     List<PredicateDescription> AndList = null;                    
     CompositePredicateDescription compositePredicateDescription = null;
     for (int i = 0; i < pdDateList.Count; i++)
     {  
           List<PredicateDescription> pdlist1 =  pdDateList[i];
           AndList = new List<PredicateDescription>();
           foreach (PredicateDescription pdesc in pdlist1) 
           {
                  AndList.Add(pdesc);
           }
           if (AndList.Count > 0) 
           {   
                 if (predicate != null)
                 {
                        if (AndList.Count == 2)
                        {
                            predicate.Or(AndList[0].And(AndList[1]));
                        }
                        else if (AndList.Count == 1)
                        {
                            predicate.Or(AndList[0]);
                        }
                 }
           }
     }
}

if (predicate == null)

{

 predicate = compositePredicateDescription;

}

                var filterQuery = query.Where(predicate);                    
                data = Globals.sLDManager.ExecuteQuery(filterQuery);

上記のように Or 演算子を に追加しようとしましたCompositePredicateDescriptionが、機能していません

次のクエリを実行したい -

Select * from Tabel1 where t.field1=1 and t.field2=1 and t.field3=1 Or ( t.field4=1 and t.field5=1) Or (t.field6=1 and t.field7=1)

ideablade を使用して上記のクエリを実行するにはどうすればよいですか。

4

1 に答える 1

2

CompositePredicateDescriptionこの状況で問題なく使用できるはずです。どのように機能していませんか?

次に例を示します。

  PredicateDescription p1 = PredicateBuilder.Make(typeof(Product), "UnitPrice", FilterOperator.IsGreaterThanOrEqualTo, 24);
  PredicateDescription p2 = PredicateBuilder.Make(typeof(Product), "Discontinued", FilterOperator.IsEqualTo, true);

  CompositePredicateDescription p3 = p1.And(p2);

  PredicateDescription p4 = PredicateBuilder.Make(typeof(Product), "UnitsInStock", FilterOperator.IsGreaterThanOrEqualTo, 1);
  PredicateDescription p5 = PredicateBuilder.Make(typeof(Product), "UnitsOnOrder", FilterOperator.IsGreaterThanOrEqualTo, 1);

  CompositePredicateDescription p6 = p1.And(p2);

  CompositePredicateDescription p7 = p3.Or(p6);

  var query = mgr.Products.Where(p7);

上記のコードは、クエリの WHERE ステートメントと同じパターンを持つ以下の WHERE ステートメントを (SQL プロファイラーから) 生成します。

WHERE (([Extent1].[UnitPrice] >= cast(24 as decimal(18))) AND (1 = [Extent1].[Discontinued])) OR (([Extent1].[UnitPrice] >= cast(24 as decimal(18))) AND (1 = [Extent1].[Discontinued]))

まだ行っていない場合は、動的 WHERE 句に関するDevForce リソース センターの記事を参照してください。

于 2013-03-20T20:20:33.433 に答える