Click or drag to resize
IObjectQueryTQuery, TObjectGetEnumerableTypedResult Method
Gets enumerable collection of TObject representing the result of this query.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 13.0.131
Syntax
C#
IEnumerable<TObject> GetEnumerableTypedResult(
	CommandBehavior commandBehavior = CommandBehavior.Default,
	bool newConnection = false
)

Parameters

commandBehavior (Optional)
Type: System.DataCommandBehavior
Command behavior for the underlying reader.
newConnection (Optional)
Type: SystemBoolean
If true, the underlying reader will be executed using its own dedicated connection.

Return Value

Type: IEnumerableTObject
Returns the enumeration resulting from query execution.
Exceptions
ExceptionCondition
NotSupportedExceptionThrown when the query does not support this method. Use TypedResult instead.
See Also