SchemaConsts

Overview

The SchemaConsts static class contains string constants that are used as names for ExtendedProperties of data columns and data tables. Data Abstract for .NET uses ExtendedProperties to store additional Schema information when the DataSet structure is created on the client side based on the Schema retrieved from the server application.

There is no need to access or modify these properties directly.

For internal use only.

Location


Constants


ExtPropertySchemaName

Contains the “Schema” as value.

Used as a key for the item of the data table's ExtendedProperties that determines the Schema name of the data table.

 

const ExtPropertySchemaName: String = "Schema";

 

const String ExtPropertySchemaName = "Schema"

 

Dim ExtPropertySchemaName As String = "Schema"

LogChanges

Contains the “LogChanges” as value.

Used as a key for the item of the data column's ExtendedProperties that determines if the data in the column was changed. Item is expected to be not null and of Boolean type.

 

const LogChanges: String = "LogChanges";

 

const String LogChanges = "LogChanges"

 

Dim LogChanges As String = "LogChanges"