.NET Framework Class Library
ObjectQuery<(Of <(T>)>)..::.OfType<(Of <(TResultType>)>) Method

Limits the query to only results of a specific type.

Namespace:  System.Data.Objects
Assembly:  System.Data.Entity (in System.Data.Entity.dll)
Syntax

Visual Basic (Declaration)
Public Function OfType(Of TResultType) As ObjectQuery(Of TResultType)
Visual Basic (Usage)
Dim instance As ObjectQuery
Dim returnValue As ObjectQuery(Of TResultType)

returnValue = instance.OfType()
C#
public ObjectQuery<TResultType> OfType<TResultType>()
Visual C++
public:
generic<typename TResultType>
ObjectQuery<TResultType>^ OfType()
JScript
JScript does not support generic types or methods.

Type Parameters

TResultType

The type of the ObjectResult<(Of <(T>)>) returned when the query is executed with the applied filter.

Return Value

Type: System.Data.Objects..::.ObjectQuery<(Of <(TResultType>)>)
A new ObjectQuery<(Of <(T>)>) instance that is equivalent to the original instance with OFTYPE applied.
Exceptions

ExceptionCondition
EntitySqlException

The type specified is not valid.

Remarks

OfType<(Of <(TResultType>)>) is used to filter query results by a specific entity or complex type. This supports an Entity Data Model (EDM) with object inheritance. For more information, see Entity Data Model Inheritance (Application Scenarios). The

OfType<(Of <(TResultType>)>) method can only be applied to an ObjectQuery<(Of <(T>)>) of an entity type or complex type that is defined in the EDM.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5 SP1
See Also

Reference

Other Resources

Tags :


Page view tracker