IDwReadOnlyTable Interface
.NET Standard 2.x
Represents the read-only settings for the database. It provides properties for the DataStore's DBMS connection.
Namespace: DWNet.Data
Assembly: DWNet.Data.dll
Syntax
public interface IDwReadOnlyTable
Property
| Name | Return Type | Description |
|---|---|---|
| Arguments | IReadOnlyDictionary<System.String, Type> | Gets the retrieval argument names and types for the DataWindow. |
| Columns | IReadOnlyList<IDwReadOnlyColumn> | Gets an IReadOnlyList<IDwReadOnlyColumn> object which contains the specifications for the columns. |
| Delete | IDwReadOnlyUpdate | Gets an IDwReadOnlyUpdate object which specifies how data is updated in the database for the DELETE operation. |
| Filter | IReadOnlyExpressionable<System.String> | Gets the filter for the DataWindow. |
| Insert | IDwReadOnlyUpdate | Gets an IDwReadOnlyUpdate object which specifies how data is updated in the database for the INSERT operation. |
| Procedure | System.String | Gets 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. |
| Sort | IReadOnlyExpressionable<System.String> | Gets the sort criteria for the DataWindow. |
| Update | IDwReadOnlyUpdate | Gets an IDwReadOnlyUpdate object which specifies how data is updated in the database for the UPDATE operation. |
| UpdateKeyInPlace | System.Boolean | Gets whether the key column can be updated in place or the row has to be deleted and re-inserted. |
| 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 an enumerated 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. |
| FindColumnById | IDwColumn | Finds a column by its ID. |