1 write to command
System.WorkflowServices (1)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (1)
1053this.command = this.provider.CreateCommand(connection, timeoutHelper.RemainingTime());
10 references to command
System.WorkflowServices (10)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (10)
1055this.handler.SetupCommand(this.command, this.id, additionalParameters); 1061result = this.command.BeginExecuteReader(commandCallback, this); 1065result = this.command.BeginExecuteNonQuery(commandCallback, this); 1085this.provider.CleanupCommand(this.command); 1106this.provider.CleanupCommand(this.command); 1158operationResult.command.Connection.Close(); 1159operationResult.provider.CleanupCommand(operationResult.command); 1180using (SqlDataReader reader = this.command.EndExecuteReader(result)) 1187this.command.EndExecuteNonQuery(result); 1190int resultCode = (int)this.command.Parameters["@result"].Value;