Delegate used by the DatabaseStorage to fill the values of a new record from the db (you only need to assing hte values.
[Visual Basic]
Public Delegate Sub FillRecordHandler( _
ByVal
record As
Object, _
ByVal
fieldValues As
Object() _
)
[C#]
public delegate void FillRecordHandler(
object record,
object[] fieldValues);
Parameters
-
record
- The record to fill.
-
fieldValues
- The values read from the database, you need to use these to fill the record.
Requirements
Namespace:
FileHelpers.DataLink
Assembly: FileHelpers (in FileHelpers.dll)
See Also
FileHelpers.DataLink Namespace
Powered by: