コード例 #1
0
 public ContentContainsItem(SearchOperators operation, int contentPartId, string value)
 {
     _operation = operation;
     _contentPartId = contentPartId;
     _value = value;
     _tests = new List<string>();
 }
コード例 #2
0
 public FieldFilterWithOperator(SearchOperators _searchOperators, Expression <Func <T> > selectFieldExpression, object findValue)
 {
     this._searchOperators      = _searchOperators;
     this.selectFieldExpression = selectFieldExpression;
     this.findValue             = findValue;
 }