DynamicParametersGetT Method |
Get the value of a parameter
Namespace: DapperAssembly: VirtualRadar.Database (in VirtualRadar.Database.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public T Get<T>(
string name
)
Public Function Get(Of T) (
name As String
) As T
public:
generic<typename T>
T Get(
String^ name
)
member Get :
name : string -> 'T
Parameters
- name
- Type: SystemString
Type Parameters
- T
Return Value
Type:
TThe value, note DBNull.Value is not returned, instead the value is returned as null
See Also