3 implementations of InsertCommand
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
107
IDbCommand? IDbDataAdapter.
InsertCommand
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataAdapter.cs (1)
66
IDbCommand? IDbDataAdapter.
InsertCommand
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
170
System.Data.IDbCommand? System.Data.IDbDataAdapter.
InsertCommand
{ get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
3 writes to InsertCommand
System.Data.Common (3)
System\Data\Common\DbDataAdapter.cs (3)
103
_IDbDataAdapter.
InsertCommand
= value;
247
_IDbDataAdapter.
InsertCommand
= CloneCommand(pfrom.InsertCommand);
274
pthis.
InsertCommand
= null;
4 references to InsertCommand
System.Data.Common (4)
System\Data\Common\DbDataAdapter.cs (4)
99
return (DbCommand?)(_IDbDataAdapter.
InsertCommand
);
247
_IDbDataAdapter.InsertCommand = CloneCommand(pfrom.
InsertCommand
);
1027
dataCommand = _IDbDataAdapter.
InsertCommand
;
1747
command = adapter._IDbDataAdapter.
InsertCommand
;