Click or drag to resize

IAggregateFluentTResultLookupTForeignDocument, TNewResult Method

Appends a lookup stage to the pipeline.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.6.0+Branch.origin/v2.6.x.Sha.593796a7b35dc59243383bcc684de296a5468f2e
Syntax
IAggregateFluent<TNewResult> Lookup<TForeignDocument, TNewResult>(
	string foreignCollectionName,
	FieldDefinition<TResult> localField,
	FieldDefinition<TForeignDocument> foreignField,
	FieldDefinition<TNewResult> as,
	AggregateLookupOptions<TForeignDocument, TNewResult> options = null
)

Parameters

foreignCollectionName
Type: SystemString
Name of the other collection.
localField
Type: MongoDB.DriverFieldDefinitionTResult
The local field.
foreignField
Type: MongoDB.DriverFieldDefinitionTForeignDocument
The foreign field.
as
Type: MongoDB.DriverFieldDefinitionTNewResult
The field in TNewResult to place the foreign results.
options (Optional)
Type: MongoDB.DriverAggregateLookupOptionsTForeignDocument, TNewResult
The options.

Type Parameters

TForeignDocument
The type of the foreign document.
TNewResult
The type of the new result.

Return Value

Type: IAggregateFluentTNewResult
The fluent aggregate interface.
See Also