IAggregateFluentExtensionsSetTResult, TFields Method |
Appends a $set stage to the pipeline.
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static IAggregateFluent<TResult> Set<TResult, TFields>(
this IAggregateFluent<TResult> aggregate,
Expression<Func<TResult, TFields>> fields
)
<ExtensionAttribute>
Public Shared Function Set(Of TResult, TFields) (
aggregate As IAggregateFluent(Of TResult),
fields As Expression(Of Func(Of TResult, TFields))
) As IAggregateFluent(Of TResult)
[<ExtensionAttribute>]
static member Set :
aggregate : IAggregateFluent<'TResult> *
fields : Expression<Func<'TResult, 'TFields>> -> IAggregateFluent<'TResult>
Parameters
- aggregate
- Type: MongoDB.DriverIAggregateFluentTResult
The aggregate. - fields
- Type: System.Linq.ExpressionsExpressionFuncTResult, TFields
The fields to set.
Type Parameters
- TResult
- The type of the result.
- TFields
- The type of object specifying the fields to set.
Return Value
Type:
IAggregateFluentTResultThe fluent aggregate interface.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IAggregateFluentTResult. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also