Invokes select queries that use parameter lists (with IN clauses) by splitting the parameter list across multiple invocations that are invoked in parallel.

Namespace: Simol
Assembly: Simol (in Simol.dll) Version: 1.0.0.0

Syntax

C#
public List<PropertyValues> SelectAttributesWithList<P>(
	SelectCommand command,
	List<P> paramValues,
	string paramName
)
Visual Basic
Public Function SelectAttributesWithList(Of P) ( _
	command As SelectCommand, _
	paramValues As List(Of P), _
	paramName As String _
) As List(Of PropertyValues)
Visual C++
public:
generic<typename P>
List<PropertyValues^>^ SelectAttributesWithList(
	SelectCommand^ command, 
	List<P>^ paramValues, 
	String^ paramName
)

Parameters

command
Type: Simol..::..SelectCommand
The command.
paramValues
Type: System.Collections.Generic..::..List<(Of <(<'P>)>)>
The param values.
paramName
Type: System..::..String
Name of the param.

Type Parameters

P
The select parameter type

Return Value

See Also