Click or drag to resize

LLBLGenProDataSourceViewBase.ConvertValueToDestinationType Method

Converts the passed in sourcevalue to the destination type. Used when converting field values in forms and parameter values in filters.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses.Web (in SD.LLBLGen.Pro.ORMSupportClasses.Web.dll) Version: 5.8.0.0 (5.8.21.0111)
Syntax
protected virtual Object ConvertValueToDestinationType(
	Type destinationType,
	Object sourceValue,
	string fieldName
)

Parameters

destinationType
Type: System.Type
Type of the destination.
sourceValue
Type: System.Object
The source value.
fieldName
Type: System.String
Name of the field.

Return Value

Type: Object
null if fieldName!= null and fieldName is part of the fieldNamesKeepEmptyStringAsValue collection and sourceValue is an empty string. Otherwise the sourcevalue converted to the destination type. If no conversion is possible, null is returned.
See Also