resultsetoptions-class
Represents some options used on fetching data and result set filling.
public class Korzh.EasyQuery.Services.ResultSetOptions
Assembly: Korzh.EasyQuery.dll
Constructors
| Name | Type | Description |
|---|---|---|
| ResultSetOptions() | void |
Properties
| Name | Type | Description |
|---|---|---|
| AfterColumnsAdded | Action<IEqResultSet> | Gets or sets the callback function that is called after the column list is filled (so befor adding the first row) |
| BeforeAddColumn | Func<EasyDataCol, bool> | Gets or sets the callback function that is called before adding a column to the result set. |
| BeforeAddRow | Func<EasyDataRow, IReadOnlyList<EasyDataCol>, bool> | Gets or sets the callback function that is called before adding a row to the result set. |
| RowNumberColumnName | string | Gets or sets the name of the column that holds the number of rows in the result set. |
| UseTimezoneOffset | bool | Gets or sets value indicating wether timezone offset from query should be applied to the result |