3 implementations of InsertCommand
System.Data.Common (1)
System\Data\Common\DbDataAdapter.cs (1)
107IDbCommand? IDbDataAdapter.InsertCommand
System.Data.Odbc (1)
System\Data\Odbc\OdbcDataAdapter.cs (1)
66IDbCommand? IDbDataAdapter.InsertCommand
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
170System.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); 274pthis.InsertCommand = null;
4 references to InsertCommand
System.Data.Common (4)
System\Data\Common\DbDataAdapter.cs (4)
99return (DbCommand?)(_IDbDataAdapter.InsertCommand); 247_IDbDataAdapter.InsertCommand = CloneCommand(pfrom.InsertCommand); 1027dataCommand = _IDbDataAdapter.InsertCommand; 1747command = adapter._IDbDataAdapter.InsertCommand;