Class AggregateGraphLookupOptions<TFrom, TAsElement, TOutput>
Represents options for the GraphLookup method.
public class AggregateGraphLookupOptions<TFrom, TAsElement, TOutput>
Type Parameters
TFrom
The type of from documents.
TAsElement
The type of the as field elements.
TOutput
The type of the output documents.
- Inheritance
-
AggregateGraphLookupOptions<TFrom, TAsElement, TOutput>
- Inherited Members
Properties
AsElementSerializer
Gets or sets the TAsElement serialzier.
public IBsonSerializer<TAsElement> AsElementSerializer { get; set; }
Property Value
- IBsonSerializer<TAsElement>
FromSerializer
Gets or sets the TFrom serializer.
public IBsonSerializer<TFrom> FromSerializer { get; set; }
Property Value
- IBsonSerializer<TFrom>
MaxDepth
Gets or sets the maximum depth.
public int? MaxDepth { get; set; }
Property Value
- int?
OutputSerializer
Gets or sets the output serializer.
public IBsonSerializer<TOutput> OutputSerializer { get; set; }
Property Value
- IBsonSerializer<TOutput>
RestrictSearchWithMatch
Gets the filter to restrict the search with.
public FilterDefinition<TFrom> RestrictSearchWithMatch { get; set; }
Property Value
- FilterDefinition<TFrom>