Condividi tramite


QueryableExtensions.AsStreaming Metodo

Definizione

Overload

AsStreaming(IQueryable)
Obsoleti.

Restituisce una nuova query che trasmetterà i risultati anziché il buffering. Questo metodo funziona chiamando il metodo AsStreaming dell'oggetto query sottostante. Se l'oggetto query sottostante non ha un metodo AsStreaming, la chiamata a questo metodo non avrà alcun effetto.

AsStreaming<T>(IQueryable<T>)
Obsoleti.

Restituisce una nuova query che trasmetterà i risultati anziché il buffering. Questo metodo funziona chiamando il metodo AsStreaming dell'oggetto query sottostante. Se l'oggetto query sottostante non ha un metodo AsStreaming, la chiamata a questo metodo non avrà alcun effetto.

AsStreaming(IQueryable)

Attenzione

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

Restituisce una nuova query che trasmetterà i risultati anziché il buffering. Questo metodo funziona chiamando il metodo AsStreaming dell'oggetto query sottostante. Se l'oggetto query sottostante non ha un metodo AsStreaming, la chiamata a questo metodo non avrà alcun effetto.

[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

Parametri

source
IQueryable

Oggetto IQueryable a cui applicare AsStreaming.

Restituisce

Nuova query con AsStreaming applicato o query di origine se AsStreaming non è supportato.

Attributi

Si applica a

AsStreaming<T>(IQueryable<T>)

Attenzione

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

Restituisce una nuova query che trasmetterà i risultati anziché il buffering. Questo metodo funziona chiamando il metodo AsStreaming dell'oggetto query sottostante. Se l'oggetto query sottostante non ha un metodo AsStreaming, la chiamata a questo metodo non avrà alcun effetto.

[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)

Parametri di tipo

T

Tipo degli elementi di source.

Parametri

source
IQueryable<T>

Oggetto IQueryable<T> a cui applicare AsStreaming.

Restituisce

Nuova query con AsStreaming applicato o query di origine se AsStreaming non è supportato.

Attributi

Si applica a