Specification.

MaxLength<T, TProperty>(ICompositeSpecification<T>, Expression<Func<T, TProperty>>, int) Method

Summary

Composes self Specification with MaxLengthSpecification<T> for candidate property:

Checks if length of candidate property is lower than or equal to Max value.

Namespace
FluentSpecification
Containing Type
Specification

Syntax

[PublicAPI]
[NotNull]
public static IComplexSpecification<T> MaxLength<T, TProperty>(this ICompositeSpecification<T> self, Expression<Func<T, TProperty>> selector, int maxLength) 
    where TProperty : IEnumerable

Attributes

Type Description
PublicAPI
NotNull

Type Parameters

Name Description
T Type of candidate.
TProperty Type of candidate property to verify (collection or string).

Parameters

Name Type Description
self ICompositeSpecification<T> Self specification.
selector Expression<Func<T, TProperty>> Candidate property selector.
maxLength int Maximum candidate property length.

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