10 references to ExecuteReader
System.Data (2)
fx\src\data\System\Data\Common\DBCommand.cs (1)
255
return Task.FromResult<DbDataReader>(
ExecuteReader
(behavior));
fx\src\data\System\Data\Common\DBCommandBuilder.cs (1)
581
using (IDataReader dataReader = sourceCommand.
ExecuteReader
(CommandBehavior.SchemaOnly | CommandBehavior.KeyInfo)){
System.Data.Entity (3)
System\Data\EntityClient\EntityCommandDefinition.cs (1)
476
reader = storeProviderCommand.
ExecuteReader
(behavior & ~CommandBehavior.SequentialAccess);
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (1)
116
using (DbDataReader reader = command.
ExecuteReader
(CommandBehavior.SequentialAccess))
System\Data\Mapping\Update\Internal\FunctionUpdateCommand.cs (1)
243
using (DbDataReader reader = m_dbCommand.
ExecuteReader
(CommandBehavior.SequentialAccess))
System.Web (1)
UI\WebControls\SqlDataSourceView.cs (1)
1099
selectResult = command.
ExecuteReader
(CommandBehavior.CloseConnection);
System.Workflow.Runtime (4)
Hosting\SqlWorkflowPersistenceService.cs (3)
263
dr = command.
ExecuteReader
(CommandBehavior.CloseConnection);
377
dr = command.
ExecuteReader
(CommandBehavior.CloseConnection);
649
dr = command.
ExecuteReader
(CommandBehavior.CloseConnection);
Tracking\SqlTrackingService.cs (1)
493
reader = command.
ExecuteReader
(behavior);