Limits the query to only results of a specific type.
Namespace:
System.Data.Objects
Assembly:
System.Data.Entity (in System.Data.Entity.dll)
Visual Basic (Declaration)
Public Function OfType(Of TResultType) As ObjectQuery(Of TResultType)
Dim instance As ObjectQuery
Dim returnValue As ObjectQuery(Of TResultType)
returnValue = instance.OfType()
public ObjectQuery<TResultType> OfType<TResultType>()
public:
generic<typename TResultType>
ObjectQuery<TResultType>^ OfType()
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.
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.
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.
.NET Framework
Supported in: 3.5 SP1
Reference
Other Resources