Base:
property
CommandText
System.Data.Common.DbCommand.CommandText
34 writes to CommandText
System.Activities.DurableInstancing (2)
System\Activities\DurableInstancing\SqlCommandAsyncResult.cs (1)
234CommandText = command.CommandText,
System\Activities\DurableInstancing\SqlWorkflowInstanceStoreAsyncResult.cs (1)
281this.sqlCommand.CommandText = this.GetSqlCommandText();
System.Data (17)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (6)
405CommandText = cmdText; 409CommandText = cmdText; 414CommandText = cmdText; 420CommandText = cmdText; 427CommandText = from.CommandText; 6135this.CommandText = commandText;
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (9)
146_com.CommandText = "select is_broker_enabled from sys.databases where database_id=db_id()"; 172_com.CommandText = _receiveQuery; 370com.CommandText = 420com.CommandText = 446_com.CommandText = _beginConversationQuery; 582_com.CommandText = (null != _beginConversationQuery) ? _beginConversationQuery : _receiveQuery; // If we're doing the initial query, we won't have a conversation Guid to begin yet. 589_com.CommandText = _concatQuery; // END query + WAITFOR RECEIVE query. 881_com.CommandText = _endConversationQuery; 901_com.CommandText = "BEGIN TRANSACTION; DROP SERVICE "+_escapedQueueName+"; DROP QUEUE "+_escapedQueueName+"; DROP PROCEDURE "+_sprocName+"; COMMIT TRANSACTION;";
fx\src\data\System\Data\SqlClient\sqlmetadatafactory.cs (2)
68command.CommandText = sqlCommand; 191command.CommandText = sqlCommand;
System.Data.Entity (1)
System\Data\SqlClient\SqlProviderServices.cs (1)
101command.CommandText = System.Data.SqlClient.SqlGen.SqlGenerator.GenerateSql(commandTree, sqlVersion, out parameters, out commandType, out paramsToForceNonUnicode);
System.Web (5)
Cache\SqlCacheDependency.cs (4)
1499sqlCmd.CommandText = !disable ? SQL_REGISTER_TABLE_SP_DBO : SQL_UNREGISTER_TABLE_SP_DBO; 1507sqlCmd.CommandText = String.Format(CultureInfo.InvariantCulture, 1520sqlCmd.CommandText = String.Format(CultureInfo.InvariantCulture, 1539sqlCmd.CommandText = String.Empty;
Management\SqlServices.cs (1)
440sqlCmd.CommandText = cmdText;
System.Workflow.Runtime (4)
Tracking\SqlTrackingWorkflowInstance.cs (4)
552cmd.CommandText = "[dbo].[GetWorkflowChangeEventArgs]"; 669cmd.CommandText = "[dbo].[GetWorkflowDefinition]"; 762cmd.CommandText = "[dbo].[GetInvokedWorkflows]"; 854cmd.CommandText = commandText;
System.WorkflowServices (5)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (5)
767command.CommandText = "InsertInstance"; 844command.CommandText = "DeleteInstance"; 946command.CommandText = "LoadInstance"; 1409command.CommandText = "UnlockInstance"; 1468command.CommandText = "UpdateInstance";
20 references to CommandText
System.Activities.DurableInstancing (2)
System\Activities\DurableInstancing\SqlCommandAsyncResult.cs (1)
234CommandText = command.CommandText,
System\Activities\DurableInstancing\StoreUtilities.cs (1)
172traceString.AppendLine(command.CommandText);
System.Data (15)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (12)
427CommandText = from.CommandText; 2729string[] parsedSProc = MultipartIdentifier.ParseMultipartIdentifier(this.CommandText, "[\"", "]\"", Res.SQL_SqlCommandCommandText, false); 2732throw ADP.NoStoredProcedureExists(this.CommandText); 2953throw ADP.NoStoredProcedureExists(this.CommandText); 3110Task executeTask = _stateObj.Parser.TdsExecuteSQLBatch(this.CommandText, timeout, this.Notification, _stateObj, sync: true); 3645rpc.rpcName = CommandText; 4331this.CommandText, enclaveType, this._activeConnection.DataSource, 4893if (ADP.IsEmpty(this.CommandText)) 5553rpc.rpcName = this.CommandText; // just get the raw command text 5942return GetSetOptionsString(behavior) + this.CommandText; 6236CommandText, 6353string commandText = CommandType == CommandType.StoredProcedure ? CommandText : string.Empty;
fx\src\data\System\Data\SqlClient\SqlCommandSet.cs (1)
117string cmdText = command.CommandText;
fx\src\data\System\Data\SqlClient\SqlDependency.cs (1)
1166builder.AppendFormat("{0};{1}", connectionString, command.CommandText);
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (1)
448_concatQuery = _endConversationQuery + _com.CommandText;
System.Web (3)
Cache\SqlCacheDependency.cs (3)
1533sqlCmd.CommandText); 1625if (sqlCmd != null && sqlCmd.CommandText.Length != 0) { 1627sqlCmd.CommandText);