Click or drag to resize
GeneralConnectionExecuteReaderCore Method
Executes the query and returns result of the query as a DbDataReader.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 13.0.131
Syntax
C#
protected virtual DbDataReader ExecuteReaderCore(
	QueryParameters query,
	CommandBehavior commandBehavior
)

Parameters

query
Type: CMS.DataEngineQueryParameters
Query parameters.
commandBehavior
Type: System.DataCommandBehavior
Command behavior.

Return Value

Type: DbDataReader
Remarks
The method is called by ExecuteReader(QueryParameters, CommandBehavior) as part of each try, if the query execution is being retried.
See Also