IDbSpecificCreatorDetermineDbTypeNameForValue Method |
Determines the db type name (ADO.NET provider specific typename) for value.
Namespace:
SD.LLBLGen.Pro.ORMSupportClasses
Assembly:
SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.4.0.0 (5.4.0)
Syntax string DetermineDbTypeNameForValue(
Object value,
out Object realValueToUse
)
Function DetermineDbTypeNameForValue (
value As Object,
<OutAttribute> ByRef realValueToUse As Object
) As String
Parameters
- value
- Type: SystemObject
The value. - realValueToUse
- Type: SystemObject
The real value to use. Normally it's the same as value, but in cases where value as a type isn't supported, the
value is converted to a value which is supported.
Return Value
Type:
String
The name of the provider specific DbType enum name for the value specified
See Also