示例#1
0
 public static AbstractCriterion LessThanOrEqual(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, ArrayOperator.LessThanOrEqual);
示例#2
0
 public static AbstractCriterion GreaterThan(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, ArrayOperator.GreaterThan);
示例#3
0
 public static AbstractCriterion LessThanOrEqual(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, ArrayOperator.LessThanOrEqual);
示例#4
0
 public static AbstractCriterion AdjacentTo(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, RangeOperator.AdjacentTo);
示例#5
0
 public static AbstractCriterion GreaterThan(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, ArrayOperator.GreaterThan);
示例#6
0
 public static AbstractCriterion Overlaps(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, ArrayOperator.Overlaps);
示例#7
0
 public static AbstractCriterion LessThan(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, RangeOperator.LessThan);
示例#8
0
 public static AbstractCriterion StrictlyLeftOf(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, RangeOperator.StrictlyLeftOf);
示例#9
0
 public static AbstractCriterion NotExtendRightOf(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, RangeOperator.NotExtendRightOf);
示例#10
0
 public static AbstractCriterion Contains(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, RangeOperator.Contains);
示例#11
0
 public static AbstractCriterion StrictlyLeftOf(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, RangeOperator.StrictlyLeftOf);
示例#12
0
 public static AbstractCriterion Contains(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, RangeOperator.Contains);
示例#13
0
 public static AbstractCriterion GreaterThanOrEqual(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, RangeOperator.GreaterThanOrEqual);
示例#14
0
 public static AbstractCriterion GreaterThanOrEqual(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, RangeOperator.GreaterThanOrEqual);
示例#15
0
 public static AbstractCriterion ContainedBy(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, ArrayOperator.ContainedBy);
示例#16
0
 public static AbstractCriterion NotExtendRightOf(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, RangeOperator.NotExtendRightOf);
示例#17
0
 public static AbstractCriterion ContainedBy(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, ArrayOperator.ContainedBy);
示例#18
0
 public static AbstractCriterion AdjacentTo(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, RangeOperator.AdjacentTo);
示例#19
0
 public static AbstractCriterion Overlaps(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, ArrayOperator.Overlaps);
示例#20
0
 public static AbstractCriterion LessThan(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, RangeOperator.LessThan);