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