Click or drag to resize

SqlInitValue Delegate

Reprensents a method to call each time a value of a specific column is loaded from the database and is being placed in its object.

Namespace:  MicaSystems.Utils
Assembly:  MicaSystems.Utils (in MicaSystems.Utils.dll) Version: 1.0.0.0 (1.1.0.123)
Syntax
C#
public delegate Object SqlInitValue(
	Object value,
	Object loadedObject
)

Parameters

value
Type: SystemObject
The value to initialize.
loadedObject
Type: SystemObject
Object that will contain the value.

Return Value

Type: Object
The initialized value.
See Also