Exemple #1
0
 public static Query Between(Raven.Server.Documents.Indexes.Index index, string fieldName, global::Raven.Server.Documents.Queries.LuceneTermType termType, string fromValue, bool fromInclusive, string toValue, bool toInclusive, bool exact)
 {
     return(CreateRange(index, fieldName, fromValue, termType, fromInclusive, toValue, termType, toInclusive, exact));
 }
Exemple #2
0
 public static Query GreaterThanOrEqual(Raven.Server.Documents.Indexes.Index index, string fieldName, LuceneTermType termType, string value, bool exact)
 {
     return(CreateRange(index, fieldName, value, termType, true, Null, LuceneTermType.Null, true, exact));
 }