Summary
Logical NOT
Specification implementation.
- Namespace
- FluentSpecification
.Core .Composite - Interfaces
- Base Types
-
- object
graph BT
Type-->Base0["object"]
Type-.->Interface0["IComplexSpecification<T>"]
Type-.->Interface1["IValidationSpecification<T>"]
Type-.->Interface2["ILinqSpecification<T>"]
Type-.->Interface3["ILinqSpecification"]
click Interface3 "/FluentSpecification/api/FluentSpecification.Abstractions/ILinqSpecification"
Type-.->Interface4["ISpecification<T>"]
Type-.->Interface5["ISpecification"]
click Interface5 "/FluentSpecification/api/FluentSpecification.Abstractions/ISpecification"
Type["NotSpecification<T>"]
class Type type-node
Syntax
[PublicAPI]
public sealed class NotSpecification<T> : IComplexSpecification<T>, IValidationSpecification<T>,
ILinqSpecification<T>, ILinqSpecification, ISpecification<T>, ISpecification
Attributes
| Type | Description |
|---|---|
| PublicAPI |
Type Parameters
| Name | Description |
|---|---|
| T | Type of candidate to verify. |
Constructors
| Name | Summary |
|---|---|
| NotSpecification |
Creates negation object of baseSpecification. |
Methods
| Name | Value | Summary |
|---|---|---|
| GetExpression |
Expression |
Gets typed lambda
Linq Expression with candidate object verification.
Expression is negation of Linq Expression, from Specification passed in constructor.
|
| IsSatisfiedBy |
bool |
Result negation of
Specification passed in constructor.
|
| IsSatisfiedBy |
bool |
Result negation of
Specifications passed in constructor.
|
Operators
Extension Methods
| Name | Value | Summary |
|---|---|---|
| And |
I |
Creates logical AND
Specification with newly created TSpecification.
From SpecificationCore
|
| And |
I |
Creates composite
Specification proxy for final logical AND Specification.
From SpecificationCore
|
| And |
I |
Creates logical AND
Specification.
From SpecificationCore
|
| AndNot |
I |
Creates logical AND
Specification with newly created and negated TSpecification.
From SpecificationCore
|
| AndNot |
I |
Creates composite
Specification proxy for final logical AND Specification.
Second Specification is negated.
From SpecificationCore
|
| AndNot |
I |
Creates logical AND
Specification with negated other.
From SpecificationCore
|
| As |
I |
Converts
Specification to complex Specification.
From SpecificationCore
|
| AsExpression |
Expression |
Converts
Specification to Linq Expression<T>.
From SpecificationCore
|
| AsPredicate |
Func |
Converts
Specification to Func<T, TResult> predicate.
From SpecificationCore
|
| Not |
I |
Creates logical NOT
Specification.
From SpecificationCore
|
| Or |
I |
Creates logical OR
Specification with newly created TSpecification.
From SpecificationCore
|
| Or |
I |
Creates composite
Specification proxy for final logical OR Specification.
From SpecificationCore
|
| Or |
I |
Creates logical OR
Specification.
From SpecificationCore
|
| OrNot |
I |
Creates logical OR
Specification with newly created and negated TSpecification.
From SpecificationCore
|
| OrNot |
I |
Creates composite
Specification proxy for final logical OR Specification.
Second Specification is negated.
From SpecificationCore
|
| OrNot |
I |
Creates logical OR
Specification with negated other.
From SpecificationCore
|
| WithMessage |
I |
Creates validation
Specification proxy with specific error message factory where not satisfied by.
From SpecificationCore
|
| WithMessage |
I |
Creates validation
Specification proxy with specific error message factory where not satisfied by.
From SpecificationCore
|
| WithMessage |
I |
Creates validation
Specification proxy with specific error message where not satisfied by.
From SpecificationCore
|

