QueryTDocumentInTValue 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.19.1+3a2a09dd959482f665ffbb5df2557ec541597af4
Syntaxpublic static IMongoQuery In<TValue>(
	Expression<Func<TDocument, IEnumerable<TValue>>> memberExpression,
	IEnumerable<TValue> values
)
Public Shared Function In(Of TValue) ( 
	memberExpression As Expression(Of Func(Of TDocument, IEnumerable(Of TValue))),
	values As IEnumerable(Of TValue)
) As IMongoQuery
static 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