DataAdapter.MissingMappingAction Property
.NET Framework 4
Determines the action to take when incoming data does not have a matching table or column.
Assembly: System.Data (in System.Data.dll)
Property Value
Type: System.Data.MissingMappingActionOne of the MissingMappingAction values. The default is Passthrough.
Implements
IDataAdapter.MissingMappingAction| Exception | Condition |
|---|---|
| ArgumentException |
The value set is not one of the MissingMappingAction values. |
The TableMappings property provides the master mapping between the returned records and the DataSet.
The following example creates a derived class, OleDbDataAdapter and sets some of its properties.
// Assumes a valid connection string to an Access database. static void CreateOleDbAdapter(string connectionString) { OleDbDataAdapter adapter = new OleDbDataAdapter(); adapter.SelectCommand = new OleDbCommand("SELECT * FROM Categories ORDER BY CategoryID"); adapter.SelectCommand.Connection = new OleDbConnection(connectionString); adapter.MissingMappingAction = MissingMappingAction.Error; adapter.MissingSchemaAction = MissingSchemaAction.Error; }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.