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