Implemented interface member:
property
CommandText
System.Data.IDbCommand.CommandText
4 overrides of CommandText
System.Data (3)
fx\src\data\System\Data\Odbc\OdbcCommand.cs (1)
158override public string CommandText {
fx\src\data\System\Data\OleDb\OleDbCommand.cs (1)
119override public string CommandText {
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
634override public string CommandText { // V1.2.3300, XXXCommand V1.0.5000
System.Data.Entity (1)
System\Data\EntityClient\EntityCommand.cs (1)
185public override string CommandText
58 writes to CommandText
System.Data (5)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (3)
715command.CommandText = builder.ToString(); 801command.CommandText = builder.ToString(); 883command.CommandText = builder.ToString();
fx\src\data\System\Data\ProviderBase\DbMetaDataFactory.cs (1)
145command.CommandText = sqlCommand;
fx\src\data\System\Data\SqlClient\SqlCommandSet.cs (1)
231batchCommand.CommandText = null;
System.Data.Entity (2)
System\Data\Objects\ObjectContext.cs (2)
3198command.CommandText = commandText; 3245command.CommandText = string.Format(CultureInfo.InvariantCulture, command.CommandText, parameterSql);
System.Data.Linq (2)
SqlClient\SqlProvider.cs (2)
1035cmd.CommandText = queryInfo.CommandText; 1282cmd.CommandText = qi.CommandText;
System.Web (1)
UI\WebControls\SqlDataSource.cs (1)
820command.CommandText = commandText;
System.Web.Extensions (32)
ClientServices\Providers\ClientFormsAuthenticationMembershipProvider.cs (10)
385cmd.CommandText = "SELECT PropertyValue FROM ApplicationProperties WHERE PropertyName = N'LastLoggedInUserName'"; 423cmd.CommandText = "DELETE FROM ApplicationProperties WHERE PropertyName = N'LastLoggedInUserName'"; 428cmd.CommandText = "INSERT INTO ApplicationProperties(PropertyName, PropertyValue) VALUES (N'LastLoggedInUserName', @UserName)"; 434cmd.CommandText = "INSERT INTO ApplicationProperties(PropertyName, PropertyValue) VALUES (N'LastLoggedInDate', @Date)"; 507cmd.CommandText = "DELETE FROM UserProperties WHERE PropertyName = @PasswordHashName"; 513cmd.CommandText = "DELETE FROM UserProperties WHERE PropertyName = @PasswordSaltName"; 520cmd.CommandText = "INSERT INTO UserProperties(PropertyName, PropertyValue) VALUES (@PasswordHashName, @PasswordHashValue)"; 527cmd.CommandText = "INSERT INTO UserProperties(PropertyName, PropertyValue) VALUES (@PasswordSaltName, @PasswordSaltValue)"; 623cmd.CommandText = "SELECT PropertyValue FROM UserProperties WHERE PropertyName = @PasswordHashName"; 629cmd.CommandText = "SELECT PropertyValue FROM UserProperties WHERE PropertyName = @PasswordSaltName";
ClientServices\Providers\ClientRoleProvider.cs (6)
223cmd.CommandText = "DELETE FROM Roles WHERE UserName = @UserName"; 229cmd.CommandText = "DELETE FROM UserProperties WHERE PropertyName = @RolesCachedDate"; 273cmd.CommandText = "INSERT INTO Roles(UserName, RoleName) VALUES(@UserName, @RoleName)"; 280cmd.CommandText = "INSERT INTO UserProperties (PropertyName, PropertyValue) VALUES(@RolesCachedDate, @Date)"; 326cmd.CommandText = "SELECT PropertyValue FROM UserProperties WHERE PropertyName = @RolesCachedDate"; 339cmd.CommandText = "SELECT RoleName FROM Roles WHERE UserName = @UserName ORDER BY RoleName";
ClientServices\Providers\ClientSettingsProvider.cs (8)
690cmd.CommandText = "SELECT PropertyName, PropertyStoredAs, PropertyValue FROM Settings"; 791cmd.CommandText = "DELETE FROM Settings WHERE PropertyName = @PropName"; 799cmd.CommandText = "INSERT INTO Settings (PropertyName, PropertyStoredAs, PropertyValue) VALUES (@PropName, 'N', '')"; 802cmd.CommandText = "INSERT INTO Settings (PropertyName, PropertyStoredAs, PropertyValue) VALUES (@PropName, 'S', @PropVal)"; 806cmd.CommandText = "INSERT INTO Settings (PropertyName, PropertyStoredAs, PropertyValue) VALUES (@PropName, 'B', @PropVal)"; 873cmd.CommandText = @"SELECT PropertyValue FROM Settings WHERE PropertyName = @PropName AND PropertyStoredAs='I'"; 883cmd.CommandText = @"DELETE FROM Settings WHERE PropertyName = @PropName AND PropertyStoredAs='I'"; 888cmd.CommandText = @"INSERT INTO Settings (PropertyName, PropertyStoredAs, PropertyValue) VALUES (@PropName, 'I', @PropValue)";
ClientServices\Providers\SqlHelper.cs (8)
87cmd.CommandText = "SELECT PropertyValue FROM UserProperties WHERE PropertyName = @PropName"; 110cmd.CommandText = "DELETE FROM UserProperties WHERE PropertyName LIKE N'CookieName_%' AND PropertyValue LIKE @PropValue"; 117cmd.CommandText = "INSERT INTO UserProperties (PropertyName, PropertyValue) VALUES (@PropName, @PropValue)"; 151cmd.CommandText = "DELETE FROM UserProperties WHERE PropertyName LIKE N'CookieName_%'"; 222cmd.CommandText = "CREATE TABLE ApplicationProperties (PropertyName nvarchar(256), PropertyValue nvarchar(256))"; 225cmd.CommandText = "CREATE TABLE UserProperties (PropertyName nvarchar(256), PropertyValue nvarchar(256))"; 228cmd.CommandText = "CREATE TABLE Roles (UserName nvarchar(256), RoleName nvarchar(256))"; 231cmd.CommandText = "CREATE TABLE Settings (PropertyName nvarchar(256), PropertyStoredAs nvarchar(1), PropertyValue nvarchar(2048))";
System.Workflow.Runtime (16)
Hosting\DbResourceAllocator.cs (1)
229command.CommandText = commandText;
Tracking\SqlTrackingService.cs (15)
278cmd.CommandText = "[dbo].[GetInstanceTrackingProfile]"; 368cmd.CommandText = "GetUpdatedTrackingProfiles"; 631cmd.CommandText = "dbo.GetTrackingProfile"; 827command.CommandText = "[dbo].[PartitionWorkflowInstance]"; 866command.CommandText = "[dbo].[SetWorkflowInstanceEndDateTime]"; 1239command.CommandText = "[dbo].[InsertWorkflowInstance]"; 1292command.CommandText = "[dbo].[InsertWorkflow]"; 1420command.CommandText = "[dbo].[InsertWorkflowInstanceEvent]"; 1537command.CommandText = "[dbo].[InsertActivityExecutionStatusEventMultiple]"; 1734command.CommandText = "[dbo].[InsertUserEvent]"; 1835command.CommandText = "[dbo].[InsertTrackingDataItemMultiple]"; 1913command.CommandText = "[dbo].[InsertTrackingDataItemAnnotationMultiple]"; 1976command.CommandText = "[dbo].[InsertEventAnnotationMultiple]"; 2099command.CommandText = "[dbo].[InsertAddedActivity]"; 2124command.CommandText = "[dbo].[InsertRemovedActivity]";
6 references to CommandText
System.Data.Entity (4)
System\Data\EntityClient\EntityCommandDefinition.cs (3)
281mappedCommandTexts.Add(mappedCommand.CommandText); 544return _mappedCommandDefinitions[0].CreateCommand().CommandText; 550sb.Append(mappedCommand.CommandText);
System\Data\Objects\ObjectContext.cs (1)
3245command.CommandText = string.Format(CultureInfo.InvariantCulture, command.CommandText, parameterSql);
System.Data.Entity.Design (1)
System\Data\Entity\Design\EntityStoreSchemaGenerator.cs (1)
1617.CreateCommand().CommandText;
System.Data.Linq (1)
SqlClient\SqlProvider.cs (1)
1154writer.WriteLine(cmd.CommandText);