Click or drag to resize

IAggregateFluentExtensionsGraphLookupTResult, TFrom, TConnectFrom, TConnectTo, TStartWith, TAs, TNewResult Method (IAggregateFluentTResult, IMongoCollectionTFrom, ExpressionFuncTFrom, TConnectFrom, ExpressionFuncTFrom, TConnectTo, ExpressionFuncTResult, TStartWith, ExpressionFuncTNewResult, TAs, AggregateGraphLookupOptionsTFrom, TFrom, TNewResult)

Appends a $graphLookup stage to the pipeline.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public static IAggregateFluent<TNewResult> GraphLookup<TResult, TFrom, TConnectFrom, TConnectTo, TStartWith, TAs, TNewResult>(
	this IAggregateFluent<TResult> aggregate,
	IMongoCollection<TFrom> from,
	Expression<Func<TFrom, TConnectFrom>> connectFromField,
	Expression<Func<TFrom, TConnectTo>> connectToField,
	Expression<Func<TResult, TStartWith>> startWith,
	Expression<Func<TNewResult, TAs>> as,
	AggregateGraphLookupOptions<TFrom, TFrom, TNewResult> options = null
)
where TAs : Object, IEnumerable<TFrom>

Parameters

aggregate
Type: MongoDB.DriverIAggregateFluentTResult
The aggregate.
from
Type: MongoDB.DriverIMongoCollectionTFrom
The from collection.
connectFromField
Type: System.Linq.ExpressionsExpressionFuncTFrom, TConnectFrom
The connect from field.
connectToField
Type: System.Linq.ExpressionsExpressionFuncTFrom, TConnectTo
The connect to field.
startWith
Type: System.Linq.ExpressionsExpressionFuncTResult, TStartWith
The start with value.
as
Type: System.Linq.ExpressionsExpressionFuncTNewResult, TAs
The as field.
options (Optional)
Type: MongoDB.DriverAggregateGraphLookupOptionsTFrom, TFrom, TNewResult
The options.

Type Parameters

TResult
The type of the result.
TFrom
The type of the from documents.
TConnectFrom
The type of the connect from field (must be either TConnectTo or a type that implements IEnumerable{TConnectTo}).
TConnectTo
The type of the connect to field.
TStartWith
The type of the start with expression (must be either TConnectTo or a type that implements IEnumerable{TConnectTo}).
TAs
The type of the as field.
TNewResult
The type of the new result (must be same as TResult with an additional as field).

Return Value

Type: IAggregateFluentTNewResult
The 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