QueryableExtensions.AsStreaming<T> 方法 (IQueryable<T>)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
注意:這個 API 現在已經過時。
傳回會串流結果而非緩衝處理的新查詢。 此方法的運作方式是藉由呼叫基礎查詢物件的 AsStreaming 方法。 如果基礎查詢物件沒有 AsStreaming 方法,則呼叫此方法沒有任何作用。
命名空間: System.Data.Entity
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
<ExtensionAttribute> _
<ObsoleteAttribute("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")> _
Public Shared Function AsStreaming(Of T) ( _
source As IQueryable(Of T) _
) As IQueryable(Of T)
'用途
Dim source As IQueryable(Of T)
Dim returnValue As IQueryable(Of T)
returnValue = source.AsStreaming()
[ObsoleteAttribute("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
public static IQueryable<T> AsStreaming<T>(
this IQueryable<T> source
)
[ExtensionAttribute]
[ObsoleteAttribute(L"LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
public:
generic<typename T>
static IQueryable<T>^ AsStreaming(
IQueryable<T>^ source
)
[<ObsoleteAttribute("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")>]
static member AsStreaming :
source:IQueryable<'T> -> IQueryable<'T>
JScript does not support generic types and methods.
類型參數
- T
source 之元素的類型。
參數
- source
類型:System.Linq.IQueryable<T>
要套用 AsStreaming 的 IQueryable<T>。
傳回值
類型:System.Linq.IQueryable<T>
已套用 AsStreaming 的新查詢,如果不支援 AsStreaming 則為來源查詢。
使用注意事項
在 Visual Basic 和 C# 中,您可以在任何 IQueryable<T> 類型物件中呼叫這個方法以做為執行個體。使用執行個體方法語法呼叫這個方法時,請省略第一個參數。如需詳細資訊,請參閱 https://msdn.microsoft.com/zh-tw/library/bb384936(v=vs.113)或 https://msdn.microsoft.com/zh-tw/library/bb383977(v=vs.113)。