ObjectQuery<T>.OfType<TResultType> 方法
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
將查詢限制為只有特定類型的結果。
命名空間: System.Data.Entity.Core.Objects
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
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()
member OfType : unit -> ObjectQuery<'TResultType>
JScript does not support generic types and methods.
類型參數
- TResultType
使用套用的篩選執行查詢時所傳回之 ObjectResult<T> 的類型。
傳回值
類型:System.Data.Entity.Core.Objects.ObjectQuery<TResultType>
新的 ObjectQuery<T> 執行個體,它就相當於套用了 OFTYPE 的原始執行個體。
例外狀況
例外狀況 | 條件 |
---|---|
EntitySqlException | 指定的類型無效。 |