Summary
Composes self Specification with FalseSpecification for candidate
property:
Checks if candidate property is False.
Syntax
[PublicAPI]
[NotNull]
public static IComplexSpecification<T> False<T>(this ICompositeSpecification<T> self, Expression<Func<T, bool>> selector)
Attributes
| Type |
Description |
| PublicAPI |
|
| NotNull |
|
Type Parameters
| Name |
Description |
| T |
Type of candidate. |
Parameters
| Name |
Type |
Description |
| self |
ICompositeSpecification<T> |
Self specification. |
| selector |
Expression<Func<T, bool>> |
Candidate property selector. |
Return Value
Exceptions
| Type |
Description |
| System.ArgumentNullException |
Thrown when self or selector is null. |
| System.ArgumentException |
Thrown when selector is not valid. |