Gets parameters from an argument value.
Namespace:
Tortuga.Chain.CommandBuilders
Assembly:
Tortuga.Chain.Core (in Tortuga.Chain.Core.dll)
public static List<TParameter> GetParameters<TParameter>(
Nullable<Object> argumentValue
)
where TParameter : DbParameter, DbParameter
Public Shared Function GetParameters(Of TParameter As {DbParameter, DbParameter}) ( _
argumentValue As Nullable(Of Object) _
) As List(Of TParameter)
public:
generic<typename TParameter>
where TParameter : DbParameter, DbParameter
static List<TParameter>^ GetParameters(
Nullable<Object^> argumentValue
)
Type Parameters
- TParameter
- The type of the parameter.
Parameters
- argumentValue
- Type: Nullable<(Of <(<'Object>)>)>
The argument value. This could be a DbParameter, collection of DbParameters, dictionary, or object.
Return Value