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,则为源查询。

属性

适用于