IWisejDataStore
Namespace: Wisej.Core
Assembly: Wisej.Framework (3.5.0.0)
All wisej data stores implement this interface.
- C#
- VB.NET
public interface IWisejDataStore
Public Interface IWisejDataStore
Methods
OnDataCount()
Returns the number of available records.
Returns: Int32. The total number of rows.
OnDataRead(data)
Returns a data object.
| Parameter | Type | Description |
|---|---|---|
| data | Object | Request parameters. The parameters depend on the data consumer. For example, the DataGridView control uses: first, last, sortIndex, and sortDirection("asc" or "desc"). |
Returns: Object. An object that contains the data requested by the component.
Implemented By
| Name | Description |
|---|---|
| DataGridView | Represents a data grid control. |
| ListView | Represents a list view control, which displays a collection of items that can be displayed using one of four different views. |