Click or drag to resize

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.16.0+eeafbea0921243a5868b81984e1083a07c1f75bc
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
)

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, TOutput
The stage.
Remarks
This method can only be used with LINQ3 but that can't be verified until Render is called.
See Also