Summary
Syntax
[PublicAPI]
[NotNull]
public static IComplexSpecification<T> NotGreaterThanOrEqual<T, TProperty>(Expression<Func<T, TProperty>> selector, TProperty notGreaterThan, IComparer<TProperty> comparer = null)
Attributes
Type |
Description |
PublicAPI |
|
NotNull |
|
Type Parameters
Name |
Description |
T |
Type of candidate. |
TProperty |
Type of compared objects. |
Parameters
Name |
Type |
Description |
selector |
Expression<Func<T, TProperty>> |
Candidate property selector. |
notGreaterThan |
TProperty |
Candidate property should not be greater than or equal to value. |
comparer |
IComparer<TProperty> |
Comparer. |
Return Value
Exceptions
Type |
Description |
System.ArgumentNullException |
Thrown when selector is null. |
System.ArgumentException |
Thrown when selector is not valid. |
System.ArgumentException |
Thrown when TProperty has no valid comparison methods. |