4 writes to Command
System.Data (4)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (1)
1453rowUpdatingEvent.Command = command;
fx\src\data\System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
38base.Command = value; }
fx\src\data\System\Data\OleDb\OleDbRowUpdatingEvent.cs (1)
24set { base.Command = value; }
fx\src\data\System\Data\SqlClient\SqlRowUpdatingEvent.cs (1)
22set { base.Command = value; }
7 references to Command
System.Data (7)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (3)
1370DbCommand command = (DbCommand)rowUpdatingEvent.Command; 1390if (command != rowUpdatingEvent.Command) { 1391command = (DbCommand)rowUpdatingEvent.Command;
fx\src\data\System\Data\Common\DbDataAdapter.cs (1)
900IDbCommand tmpCommand = rowUpdatingEvent.Command;
fx\src\data\System\Data\Odbc\OdbcRowUpdatingEvent.cs (1)
36get { return (base.Command as OdbcCommand); }
fx\src\data\System\Data\OleDb\OleDbRowUpdatingEvent.cs (1)
23get { return (base.Command as OleDbCommand); }
fx\src\data\System\Data\SqlClient\SqlRowUpdatingEvent.cs (1)
21get { return (base.Command as SqlCommand); }