EFExtensions.MultipleParameters<TSource>(TSource) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Within the context of an EF LINQ query, forces its argument to be inserted into the query as a multiple parameter expressions.
public static TSource MultipleParameters<TSource>(TSource argument) where TSource : System.Collections.IEnumerable;
static member MultipleParameters : 'Source -> 'Source (requires 'Source :> System.Collections.IEnumerable)
Public Shared Function MultipleParameters(Of TSource As IEnumerable) (argument As TSource) As TSource
Type Parameters
- TSource
The type of collection.
Parameters
- argument
- TSource
The collection to be integrated as parameters into the query.
Returns
The same value for further use in the query.