共用方式為


QueryableExtensions.AsStreaming 方法

定義

多載

AsStreaming(IQueryable)
已淘汰.

傳回新的查詢,此查詢會串流結果,而不是緩衝處理。 此方法的運作方式是呼叫基礎查詢物件的 AsStreaming 方法。 如果基礎查詢物件沒有 AsStreaming 方法,則呼叫此方法將不會有任何影響。

AsStreaming<T>(IQueryable<T>)
已淘汰.

傳回新的查詢,此查詢會串流結果,而不是緩衝處理。 此方法的運作方式是呼叫基礎查詢物件的 AsStreaming 方法。 如果基礎查詢物件沒有 AsStreaming 方法,則呼叫此方法將不會有任何影響。

AsStreaming(IQueryable)

警告

LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.

傳回新的查詢,此查詢會串流結果,而不是緩衝處理。 此方法的運作方式是呼叫基礎查詢物件的 AsStreaming 方法。 如果基礎查詢物件沒有 AsStreaming 方法,則呼叫此方法將不會有任何影響。

[System.Obsolete("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
public static System.Linq.IQueryable AsStreaming (this System.Linq.IQueryable source);
static member AsStreaming : System.Linq.IQueryable -> System.Linq.IQueryable
<Extension()>
Public Function AsStreaming (source As IQueryable) As IQueryable

參數

source
IQueryable

IQueryable 套用 AsStreaming 至 的 。

傳回

套用 AsStreaming 的新查詢,如果不支援 AsStreaming,則為來源查詢。

屬性

適用於

AsStreaming<T>(IQueryable<T>)

警告

LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.

傳回新的查詢,此查詢會串流結果,而不是緩衝處理。 此方法的運作方式是呼叫基礎查詢物件的 AsStreaming 方法。 如果基礎查詢物件沒有 AsStreaming 方法,則呼叫此方法將不會有任何影響。

[System.Obsolete("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
public static System.Linq.IQueryable<T> AsStreaming<T> (this System.Linq.IQueryable<T> source);
static member AsStreaming : System.Linq.IQueryable<'T> -> System.Linq.IQueryable<'T>
<Extension()>
Public Function AsStreaming(Of T) (source As IQueryable(Of T)) As IQueryable(Of T)

類型參數

T

source 項目的類型。

參數

source
IQueryable<T>

IQueryable<T> 套用 AsStreaming 至 的 。

傳回

套用 AsStreaming 的新查詢,如果不支援 AsStreaming,則為來源查詢。

屬性

適用於