Ejemplo n.º 1
0
 public static AbstractCriterion LessThanOrEqualProperty(string leftPropertyName, string rightPropertyName) =>
 RestrictionWrapper.CompareProperty(leftPropertyName, rightPropertyName, RangeOperator.LessThanOrEqual);
Ejemplo n.º 2
0
 public static AbstractCriterion Equal(IProjection projection, object value) =>
 RestrictionWrapper.Compare(projection, value, RangeOperator.Equal);
Ejemplo n.º 3
0
 public static AbstractCriterion LessThanProperty(string leftPropertyName, IProjection rightProjection) =>
 RestrictionWrapper.CompareProperty(leftPropertyName, rightProjection, RangeOperator.LessThan);
Ejemplo n.º 4
0
 public static AbstractCriterion GreaterThanOrEqualProperty(string leftPropertyName, IProjection rightProjection) =>
 RestrictionWrapper.CompareProperty(leftPropertyName, rightProjection, RangeOperator.GreaterThanOrEqual);
Ejemplo n.º 5
0
 public static AbstractCriterion Equal(string propertyName, object value) =>
 RestrictionWrapper.Compare(propertyName, value, RangeOperator.Equal);
Ejemplo n.º 6
0
 public static AbstractCriterion GreaterThanProperty(IProjection leftProjection, IProjection rightProjection) =>
 RestrictionWrapper.CompareProperty(leftProjection, rightProjection, RangeOperator.GreaterThan);
Ejemplo n.º 7
0
 public static AbstractCriterion GreaterThanProperty(string leftPropertyName, string rightPropertyName) =>
 RestrictionWrapper.CompareProperty(leftPropertyName, rightPropertyName, RangeOperator.GreaterThan);
Ejemplo n.º 8
0
 public static AbstractCriterion NotEqualProperty(IProjection leftProjection, IProjection rightProjection) =>
 RestrictionWrapper.CompareProperty(leftProjection, rightProjection, RangeOperator.NotEqual);
Ejemplo n.º 9
0
 public static AbstractCriterion EqualProperty(IProjection leftProjection, string rightPropertyName) =>
 RestrictionWrapper.CompareProperty(leftProjection, rightPropertyName, RangeOperator.Equal);