Interface ITableRowLoadHandler
Implementyed by entety objects or other objects that load related objects in addition to single Row objects. This is typically entyty objects facading row objects.
Namespace: SuperOffice.CRM.Rows
Assembly: SoDataBase.dll
Syntax
public interface ITableRowLoadHandler
Methods
OnRowLoad(SoDataReader, TableRowBase)
Event raised when a Row is loaded from the database and gives the hander oportunity to read additional data from the reader.
Declaration
void OnRowLoad(SoDataReader reader, TableRowBase row)
Parameters
Type | Name | Description |
---|---|---|
SoDataReader | reader | Data reader holding results from the database. |
TableRowBase | row | The row that is allready loaded. |
OnRowLoaded()
Event raised when the row is loaded.
Declaration
void OnRowLoaded()