QueryableExtensions.AsStreaming 方法 (IQueryable)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
注意:這個 API 現在已經過時。
傳回會串流結果而非緩衝處理的新查詢。 此方法的運作方式是藉由呼叫基礎查詢物件的 AsStreaming 方法。 如果基礎查詢物件沒有 AsStreaming 方法,則呼叫此方法沒有任何作用。
命名空間: System.Data.Entity
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
<ObsoleteAttribute("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")> _
<ExtensionAttribute> _
Public Shared Function AsStreaming ( _
source As IQueryable _
) As IQueryable
'用途
Dim source As IQueryable
Dim returnValue As IQueryable
returnValue = source.AsStreaming()
[ObsoleteAttribute("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
public static IQueryable AsStreaming(
this IQueryable source
)
[ObsoleteAttribute(L"LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")]
[ExtensionAttribute]
public:
static IQueryable^ AsStreaming(
IQueryable^ source
)
[<ObsoleteAttribute("LINQ queries are now streaming by default unless a retrying ExecutionStrategy is used. Calling this method will have no effect.")>]
static member AsStreaming :
source:IQueryable -> IQueryable
public static function AsStreaming(
source : IQueryable
) : IQueryable
參數
- source
類型:System.Linq.IQueryable
要套用 AsStreaming 的 IQueryable。
傳回值
類型:System.Linq.IQueryable
已套用 AsStreaming 的新查詢,如果不支援 AsStreaming 則為來源查詢。
使用注意事項
在 Visual Basic 和 C# 中,您可以在任何 IQueryable 類型物件中呼叫這個方法以做為執行個體。使用執行個體方法語法呼叫這個方法時,請省略第一個參數。如需詳細資訊,請參閱 https://msdn.microsoft.com/zh-tw/library/bb384936(v=vs.113)或 https://msdn.microsoft.com/zh-tw/library/bb383977(v=vs.113)。