GeoHaystackSearchOptionsTDocumentSetQueryTMember Method |
Sets the query on the optional additional field.
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public static GeoHaystackSearchOptionsBuilder<TDocument> SetQuery<TMember>(
Expression<Func<TDocument, TMember>> memberExpression,
TMember value
)
Public Shared Function SetQuery(Of TMember) (
memberExpression As Expression(Of Func(Of TDocument, TMember)),
value As TMember
) As GeoHaystackSearchOptionsBuilder(Of TDocument)
static member SetQuery :
memberExpression : Expression<Func<'TDocument, 'TMember>> *
value : 'TMember -> GeoHaystackSearchOptionsBuilder<'TDocument>
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, TMember
The member expression. - value
- Type: TMember
The value fo the additional field.
Type Parameters
- TMember
- The member type.
Return Value
Type:
GeoHaystackSearchOptionsBuilderTDocumentThe builder (so method calls can be chained).
See Also