Freigeben über


DbSqlQuery<TEntity>.AsStreaming-Methode

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Hinweis: Diese API ist mittlerweile veraltet.

Gibt eine neue Abfrage zurück, die die Ergebnisse streamt, anstatt sie zu puffern.

Namespace:  System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
<ObsoleteAttribute("Queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")> _
Public Overridable Function AsStreaming As DbSqlQuery(Of TEntity)
'Usage
Dim instance As DbSqlQuery 
Dim returnValue As DbSqlQuery(Of TEntity)

returnValue = instance.AsStreaming()
[ObsoleteAttribute("Queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
public virtual DbSqlQuery<TEntity> AsStreaming()
[ObsoleteAttribute(L"Queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
public:
virtual DbSqlQuery<TEntity>^ AsStreaming()
[<ObsoleteAttribute("Queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")>]
abstract AsStreaming : unit -> DbSqlQuery<'TEntity> 
[<ObsoleteAttribute("Queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")>]
override AsStreaming : unit -> DbSqlQuery<'TEntity> 
public function AsStreaming() : DbSqlQuery<TEntity>

Rückgabewert

Typ: System.Data.Entity.Infrastructure.DbSqlQuery<TEntity>
Eine neue Abfrage mit angewendetem AsStreaming.

Siehe auch

Verweis

DbSqlQuery<TEntity> Klasse

System.Data.Entity.Infrastructure-Namespace