Specification.

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

Summary

Creates 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>(Expression<Func<T, string>> selector, string expected)

Attributes

Type Description
PublicAPI
NotNull

Type Parameters

Name Description
T Type of candidate.

Parameters

Name Type Description
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 selector is null.
System.ArgumentException Thrown when selector is not valid.
GitHub