Implemented interface member:
property
CommandText
System.Data.IDbCommand.CommandText
3 overrides of CommandText
System.Data.Common (1)
System\Data\Common\DbDataSource.cs (1)
277public override string CommandText
System.Data.Odbc (1)
System\Data\Odbc\OdbcCommand.cs (1)
162public override string CommandText
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
21public override string CommandText { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
9 writes to CommandText
HealthChecksSample (1)
DbConnectionHealthCheck.cs (1)
44command.CommandText = TestQuery;
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (2)
UserStoreEncryptPersonalDataTest.cs (2)
125command.CommandText = $"SELECT u.{column} FROM AspNetUsers u WHERE u.Id = '{id}'"; 147command.CommandText = $"SELECT u.Value FROM AspNetUserTokens u WHERE u.LoginProvider = '{loginProvider}' AND u.Name = '{tokenName}' AND u.UserId = '{id}'";
System.Data.Common (5)
System\Data\Common\DBCommandBuilder.cs (3)
806command.CommandText = builder.ToString(); 897command.CommandText = builder.ToString(); 984command.CommandText = builder.ToString();
System\Data\Common\DbDataSource.cs (2)
52command.CommandText = commandText; 280set => _wrappedCommand.CommandText = value;
System.Data.Odbc (1)
src\libraries\Common\src\System\Data\ProviderBase\DbMetaDataFactory.cs (1)
126command.CommandText = sqlCommand;
1 reference to CommandText
System.Data.Common (1)
System\Data\Common\DbDataSource.cs (1)
279get => _wrappedCommand.CommandText;