Specification.

Contains<T>(ICompositeSpecification<T>, Expression<Func<T, string>>, string) Method

Summary

Composes self Specification with ContainsSpecification for candidate property:

Checks if string contains another string (case sensitive).

Namespace
FluentSpecification
Containing Type
Specification

Syntax

[PublicAPI]
[NotNull]
public static IComplexSpecification<T> Contains<T>(this ICompositeSpecification<T> self, Expression<Func<T, string>> selector, string expected)

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, string>> Candidate property selector.
expected string Expected substring.

Return Value

Type Description
IComplexSpecification<T> Composed complex Specification.

Exceptions

Type Description
System.ArgumentNullException Thrown when self or selector is null.
System.ArgumentException Thrown when selector is not valid.
GitHub