Beispiel #1
0
 public NullableDecimalSetCriterion(Expression <Func <TFilterable, decimal?> > propertyNameExpression, SetFilterType filterType, IEnumerable <decimal?> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
Beispiel #2
0
 protected SetCriterionBase(Expression <Func <TFilterable, TFilterableProperty> > propertyNameExpression, SetFilterType filterType, IEnumerable <TFilterableProperty> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
Beispiel #3
0
 public NullableDecimalSetCriterion(string propertyName, SetFilterType filterType, IEnumerable <decimal?> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
Beispiel #4
0
 public NullableFloatSetCriterion(string propertyName, SetFilterType filterType, IEnumerable <float?> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
 public static CompoundFilterBuilder <TFilterable> Or <TFilterable>(this SimpleFilterBuilder <TFilterable> simpleFilterBuilder, string propertyName, SetFilterType filterType, IEnumerable <string> filterValue) where TFilterable : class, IFilterable
 {
     return(simpleFilterBuilder.Or(new StringSetCriterion <TFilterable>(propertyName, filterType, filterValue)));
 }
Beispiel #6
0
 public NullableDateTimeOffsetSetCriterion(string propertyName, SetFilterType filterType, IEnumerable <DateTimeOffset?> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
 public StringSetCriterion(string propertyName, SetFilterType filterType, IEnumerable <string> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
Beispiel #8
0
 public static CompoundFilterBuilder <TFilterable> And <TFilterable>(this SimpleFilterBuilder <TFilterable> simpleFilterBuilder, string propertyName, SetFilterType filterType, IEnumerable <DateTime?> filterValue) where TFilterable : class, IFilterable
 {
     return(simpleFilterBuilder.And(new NullableDateTimeSetCriterion <TFilterable>(propertyName, filterType, filterValue)));
 }
 public static SimpleFilterBuilder <TFilterable> Where <TFilterable, TNumeric>(this FilterBuilder <TFilterable> simpleFilterBuilder, string propertyName, SetFilterType filterType, IEnumerable <TNumeric> filterValue) where TFilterable : class, IFilterable
     where TNumeric : struct
 {
     return(simpleFilterBuilder.Where(new NumericSetCriterion <TFilterable, TNumeric>(propertyName, filterType, filterValue)));
 }
Beispiel #10
0
 public static CompoundFilterBuilder <TFilterable> And <TFilterable, TNumeric>(this SimpleFilterBuilder <TFilterable> simpleFilterBuilder, Expression <Func <TFilterable, TNumeric> > propertyNameExpression, SetFilterType filterType, IEnumerable <TNumeric> filterValue) where TFilterable : class, IFilterable
     where TNumeric : struct
 {
     return(simpleFilterBuilder.And(new NumericSetCriterion <TFilterable, TNumeric>(propertyNameExpression, filterType, filterValue)));
 }
Beispiel #11
0
 public static CompoundFilterBuilder <TFilterable> And <TFilterable>(this SimpleFilterBuilder <TFilterable> simpleFilterBuilder, Expression <Func <TFilterable, DateTime> > propertyNameExpression, SetFilterType filterType, IEnumerable <DateTime> filterValue) where TFilterable : class, IFilterable
 {
     return(simpleFilterBuilder.And(new DateTimeSetCriterion <TFilterable>(propertyNameExpression, filterType, filterValue)));
 }
 public DateTimeSetCriterion(Expression <Func <TFilterable, DateTime> > propertyNameExpression, SetFilterType filterType, IEnumerable <DateTime> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
 public DateTimeSetCriterion(string propertyName, SetFilterType filterType, IEnumerable <DateTime> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
Beispiel #14
0
 public NullableLongSetCriterion(string propertyName, SetFilterType filterType, IEnumerable <long?> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
Beispiel #15
0
 public NullableIntegerSetCriterion(string propertyName, SetFilterType filterType, IEnumerable <int?> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
 public static SimpleFilterBuilder <TFilterable> Where <TFilterable>(this FilterBuilder <TFilterable> filterBuilderBase, Expression <Func <TFilterable, DateTime> > propertyNameExpression, SetFilterType filterType, IEnumerable <DateTime> filterValue) where TFilterable : class, IFilterable
 {
     return(filterBuilderBase.Where(new DateTimeSetCriterion <TFilterable>(propertyNameExpression, filterType, filterValue)));
 }
Beispiel #17
0
 public NullableIntegerSetCriterion(Expression <Func <TFilterable, int?> > propertyNameExpression, SetFilterType filterType, IEnumerable <int?> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
 public static SimpleFilterBuilder <TFilterable> Where <TFilterable>(this FilterBuilder <TFilterable> filterBuilderBase, string propertyName, SetFilterType filterType, IEnumerable <DateTime?> filterValue) where TFilterable : class, IFilterable
 {
     return(filterBuilderBase.Where(new NullableDateTimeSetCriterion <TFilterable>(propertyName, filterType, filterValue)));
 }
Beispiel #19
0
 public NullableDateTimeOffsetSetCriterion(Expression <Func <TFilterable, DateTimeOffset?> > propertyNameExpression, SetFilterType filterType, IEnumerable <DateTimeOffset?> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
Beispiel #20
0
 public NumericSetCriterion(Expression <Func <TFilterable, TNumeric> > propertyNameExpression, SetFilterType filterType, IEnumerable <TNumeric> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
 public StringSetCriterion(Expression <Func <TFilterable, string> > propertyNameExpression, SetFilterType filterType, IEnumerable <string> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
Beispiel #22
0
 protected SetCriterionBase(string propertyName, SetFilterType filterType, IEnumerable <TFilterableProperty> filterValue) : base(propertyName, filterType, filterValue)
 {
 }
Beispiel #23
0
 public NullableFloatSetCriterion(Expression <Func <TFilterable, float?> > propertyNameExpression, SetFilterType filterType, IEnumerable <float?> filterValue) : base(propertyNameExpression, filterType, filterValue)
 {
 }
 public static CompoundFilterBuilder <TFilterable> Or <TFilterable>(this SimpleFilterBuilder <TFilterable> simpleFilterBuilder, Expression <Func <TFilterable, short?> > propertyNameExpression, SetFilterType filterType, IEnumerable <short?> filterValue) where TFilterable : class, IFilterable
 {
     return(simpleFilterBuilder.Or(new NullableShortSetCriterion <TFilterable>(propertyNameExpression, filterType, filterValue)));
 }