QueryBuilderTDocumentAllTValue Method |
Tests that the named array element contains all of the values (see $all).
Namespace:
MongoDB.Driver.Builders
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax public IMongoQuery All<TValue>(
Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
IEnumerable<TValue> values
)
Public Function All(Of TValue) (
memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
values As IEnumerable(Of TValue)
) As IMongoQuery
member All :
memberExpression : Expression<Func<'TDocument, IEnumerable<'TValue>>> *
values : IEnumerable<'TValue> -> IMongoQuery
Parameters
- memberExpression
- Type: System.Linq.ExpressionsExpressionFuncTDocument, IEnumerableTValue
The member expression representing the element to test. - values
- Type: System.Collections.GenericIEnumerableTValue
The values to compare to.
Type Parameters
- TValue
- The type of the enumerable member values.
Return Value
Type:
IMongoQueryAn IMongoQuery.
See Also