Specification.

NotInclusiveBetween<T, TProperty>(Expression<Func<T, TProperty>>, TProperty, TProperty, IComparer<TProperty>) Method

Summary

Creates InclusiveBetweenSpecification<T> negation for candidate property:

Checks if candidate property is not between (inclusive) min and max value.

Namespace
FluentSpecification
Containing Type
Specification

Syntax

[PublicAPI]
[NotNull]
public static IComplexSpecification<T> NotInclusiveBetween<T, TProperty>(Expression<Func<T, TProperty>> selector, TProperty notFrom, TProperty notTo, 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.
notFrom TProperty Not min candidate value.
notTo TProperty Not max candidate value.
comparer IComparer<TProperty> Comparer.

Return Value

Type Description
IComplexSpecification<T> New complex Specification.

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.
System.ArgumentException Thrown when notFrom is greater than notTo.
GitHub