IDwTable Interface
.NET Standard 2.x
Represents the various settings for the database. It provides properties for the DataStore's DBMS connection.
You can also specify the stored procedure for the update activity.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Implements
DWNet.Data.IDwNode<IDwTable>
Syntax
public interface IDwTable : IDwReadOnlyTable, IDwNode<IDwTable>
Property
Name | Return Type | Description |
---|---|---|
Arguments | IReadOnlyDictionary<System.String, Type> | Gets the retrieval argument names and types for the DataWindow. (Inherited from IDwReadOnlyTable) |
Columns | IReadOnlyList<IDwColumn> | Gets an IReadOnlyList<IDwColumn> object which contains the specifications for the columns. |
Delete | IDwUpdate | Gets or sets an IDwUpdate object which specifies how data is updated in the database for the DELETE operation. |
Filter | IExpressionable<System.String> | Gets or sets the filter for the DataWindow. |
Insert | IDwUpdate | Gets or sets an IDwUpdate object which specifies how data is updated in the database for the INSERT operation. |
Procedure | System.String | Gets or sets a string that contains the number of the result set returned by the stored procedure to populate the DataWindow object. |
SelectAttribute | System.String | Gets a string containing the PBSELECT statement for the DataWindow. (Inherited from IDwReadOnlyTable) |
Sort | IExpressionable<System.String> | Gets or sets the sort criteria for the DataWindow. |
Update | IDwUpdate | Gets or sets an IDwUpdate object which specifies how data is updated in the database for the UPDATE operation. |
UpdateKeyInPlace | System.Boolean | Gets or sets whether the key column can be updated in place or the row has to be deleted and reinserted. |
UpdateTable | System.String | Gets a string from the DataWindow syntax which specifies the name of the database table used to build the Update syntax. |
UpdateWhere | DwUpdateWhere | Gets or sets an enumerate value of the DwUpdateWhere enumeration indicating which columns will be included in the WHERE clause of the UPDATE statement. |
Method
Name | Return Type | Description |
---|---|---|
FindColumn | IDwColumn | Finds a column by its name. (Inherited from IDwReadOnlyTable) |
FindColumnById | IDwColumn | Finds a column by its ID. (Inherited from IDwReadOnlyTable) |