LinqToMongoInTSource Method |
Determines whether a specified value is contained in a sequence.
Namespace:
MongoDB.Driver.Linq
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public static bool In<TSource>(
this TSource value,
IEnumerable<TSource> source
)
<ExtensionAttribute>
Public Shared Function In(Of TSource) (
value As TSource,
source As IEnumerable(Of TSource)
) As Boolean
[<ExtensionAttribute>]
static member In :
value : 'TSource *
source : IEnumerable<'TSource> -> bool
Parameters
- value
- Type: TSource
The value to locate in the sequence. - source
- Type: System.Collections.GenericIEnumerableTSource
A sequence in which to locate the values.
Type Parameters
- TSource
- The type of the elements of source.
Return Value
Type:
BooleanTrue if the value is contained in the sequence.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also