Пример #1
0
 /// <summary>
 /// Specifies that any subsequent predicates should be treated as part of an "or" condition.
 /// </summary>
 /// <returns>An set of predicates that can be applied to a list of classes.</returns>
 public Predicates Or()
 {
     // Create a new group of functions - this has the effect of creating an "or" condition
     _sequence.CreateGroup();
     return(new Predicates(_types, _sequence));
 }