Exemplo n.º 1
0
 public SearchRequest DateFilter(string fieldName, OperatorType op, string timezone, SearchValue min, SearchValue max)
 {
     _request.Conditions.Filter = SearchFilter.CreateDateMinMax(fieldName, timezone, OperatorTypeMap[op], min, max);
     return(_request);
 }