コード例 #1
0
 public ExpressionHandlerByRange()
 {
     SearchStrategy = SearchClauseStrategy.ByRange;
 }
コード例 #2
0
 public ExpressionHandlerByCombineOrCondition()
 {
     SearchStrategy = SearchClauseStrategy.CombiningByOr;
 }
コード例 #3
0
 public ExpressionHandlerNormal()
 {
     //another time when rider is stupid as f**k, no matter that it allows you to use C#6, default property value is to hard to understand...
     SearchStrategy = SearchClauseStrategy.Normal;
 }
コード例 #4
0
 public ExpressionHandlerByContains()
 {
     SearchStrategy = SearchClauseStrategy.ByContains;
 }