QueryBuilder.MaxByNullable<'T,'Q,'Value> Method (F#)
Visual Studio 2012
A query operator that selects a nullable value for each element selected so far and returns the maximum of these values. If any nullable does not have a value, it is ignored.
Namespace/Module Path: Microsoft.FSharp.Linq
Assembly: FSharp.Core (in FSharp.Core.dll)
// Signature:
member this.MaxByNullable : QuerySource<'T,'Q> * ('T -> Nullable<'Value>) -> Nullable<'Value> when 'Value : (IComparable) and 'Value : (new : unit -> 'Value) and 'Value : struct and 'Value :> ValueType
// Usage:
queryBuilder.MaxByNullable (source, valueSelector)
For more information and examples, see Query Expressions (F#).