Exemplo n.º 1
0
 public AzureSearchQueryFilter(string propertyName, ComparisonExpression comparison, ISearchPropertyValue value)
 {
     PropertyName = propertyName;
     Comparison   = comparison;
     Value        = value;
 }
Exemplo n.º 2
0
 public static AzureSearchQueryFilter GreaterThan(string propertyName, ISearchPropertyValue value)
 {
     return(new AzureSearchQueryFilter(propertyName, ComparisonExpression.Gt, value));
 }
Exemplo n.º 3
0
 public static AzureSearchQueryFilter NotEquals(string propertyName, ISearchPropertyValue value)
 {
     return(new AzureSearchQueryFilter(propertyName, ComparisonExpression.Ne, value));
 }