| QueryBuilderTDocumentInTValue Method (ExpressionFuncTDocument, IEnumerableTValue, IEnumerableTValue) | 
 
            Tests that any of the values in the named array element are equal to one of a list of values (see $in).
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
 Syntax
Syntaxpublic IMongoQuery In<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	IEnumerable<TValue> values
)
Public Function In(Of TValue) ( 
	memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
	values As IEnumerable(Of TValue)
) As IMongoQuery
member In : 
        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
See Also