PipelineStageDefinitionBuilderGroupForLinq3TInput, TValue, TOutput Method |
Creates a $group stage (this method can only be used with LINQ3).
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax public static GroupForLinq3Result<TInput, TValue, TOutput> GroupForLinq3<TInput, TValue, TOutput>(
Expression<Func<TInput, TValue>> value,
Expression<Func<IGrouping<TValue, TInput>, TOutput>> group,
ExpressionTranslationOptions translationOptions = null
)
Public Shared Function GroupForLinq3(Of TInput, TValue, TOutput) (
value As Expression(Of Func(Of TInput, TValue)),
group As Expression(Of Func(Of IGrouping(Of TValue, TInput), TOutput)),
Optional translationOptions As ExpressionTranslationOptions = Nothing
) As GroupForLinq3Result(Of TInput, TValue, TOutput)
static member GroupForLinq3 :
value : Expression<Func<'TInput, 'TValue>> *
group : Expression<Func<IGrouping<'TValue, 'TInput>, 'TOutput>> *
?translationOptions : ExpressionTranslationOptions
(* Defaults:
let _translationOptions = defaultArg translationOptions null
*)
-> GroupForLinq3Result<'TInput, 'TValue, 'TOutput>
Parameters
- value
- Type: System.Linq.ExpressionsExpressionFuncTInput, TValue
The value field. - group
- Type: System.Linq.ExpressionsExpressionFuncIGroupingTValue, TInput, TOutput
The group projection. - translationOptions (Optional)
- Type: MongoDB.DriverExpressionTranslationOptions
The translation options.
Type Parameters
- TInput
- The type of the input documents.
- TValue
- The type of the values.
- TOutput
- The type of the output documents.
Return Value
Type:
GroupForLinq3ResultTInput,
TValue,
TOutputThe stage.
Remarks This method can only be used with LINQ3 but that can't be verified until Render is called.
See Also