SchemaType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how to handle existing schema mappings when performing a FillSchema(DataSet, SchemaType) operation.
public enum class SchemaType
public enum SchemaType
type SchemaType =
Public Enum SchemaType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Source | 1 | Ignore any table mappings on the DataAdapter. Configure the DataSet using the incoming schema without applying any transformations. |
Mapped | 2 | Apply any existing table mappings to the incoming schema. Configure the DataSet with the transformed schema. |
Remarks
The SchemaType usually should be set to Mapped
, because any established table and column mappings are used.