Implemented interface member:
property
MissingSchemaAction
System.Data.IDataAdapter.MissingSchemaAction
2 writes to MissingSchemaAction
System.Data (2)
fx\src\data\System\Data\DataSet.cs (1)
3404adapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;
fx\src\data\System\Data\DataTable.cs (1)
4474adapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;
6 references to MissingSchemaAction
System.Data (6)
fx\src\data\System\Data\Common\DataAdapter.cs (1)
653bool withKeyInfo = (Data.MissingSchemaAction.AddWithKey == MissingSchemaAction);
fx\src\data\System\Data\Common\DbDataAdapter.cs (2)
184System.Data.MissingSchemaAction action = MissingSchemaAction; 523if (Data.MissingSchemaAction.AddWithKey == MissingSchemaAction) {
fx\src\data\System\Data\OleDb\OleDbDataAdapter.cs (2)
358CommandBehavior behavior = (MissingSchemaAction.AddWithKey != MissingSchemaAction) ? 0 : CommandBehavior.KeyInfo; 406CommandBehavior behavior = (MissingSchemaAction.AddWithKey != MissingSchemaAction) ? 0 : CommandBehavior.KeyInfo;
fx\src\data\System\Data\ProviderBase\SchemaMapping.cs (1)
95schemaAction = _adapter.MissingSchemaAction;