Click or drag to resize
ProjectionMinTResult Method
Computes the minimum of a sequence of values.

Namespace: SphinxConnector.FluentApi
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 3.12.6
Syntax
public static TResult Min<TResult>(
	Expression<Func<TResult>> expression
)

Parameters

expression
Type: System.Linq.ExpressionsExpressionFuncTResult
A function that returns the member to find the minimum for.

Type Parameters

TResult
The type of the member.

Return Value

Type: TResult
The computed minimum.
Exceptions
ExceptionCondition
ArgumentNullExceptionOccurs when expression is null.
See Also