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 がサポートされていない場合はソース クエリ。

属性

適用対象