MissingMappingAction 列挙型
定義
ソース テーブルまたはソース列からのマップがない場合に実行するアクションを決定します。Determines the action that occurs when a mapping is missing from a source table or a source column.
public enum class MissingMappingAction
public enum MissingMappingAction
type MissingMappingAction =
Public Enum MissingMappingAction
- 継承
フィールド
Error | 3 | 指定した列マップが存在しない場合は、InvalidOperationException が生成されます。An InvalidOperationException is generated if the specified column mapping is missing. |
Ignore | 2 | マップがない列またはテーブルは無視されます。The column or table not having a mapping is ignored. |
Passthrough | 1 | ソース列またはソース テーブルは、元の名前を使用して作成され、DataSet に追加されます。The source column or source table is created and added to the DataSet using its original name. |
注釈
MissingMappingAction値は、メソッドとメソッドの引数として使用され GetColumnMappingBySchemaAction GetTableMappingBySchemaAction ます。The MissingMappingAction values are used as arguments in the GetColumnMappingBySchemaAction method, and the GetTableMappingBySchemaAction method.