QueryableExtensions.SumAsync 方法 (IQueryable<Single>)
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
非同步計算 Single 值序列的加總。
命名空間: System.Data.Entity
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
<ExtensionAttribute> _
Public Shared Function SumAsync ( _
source As IQueryable(Of Single) _
) As Task(Of Single)
'用途
Dim source As IQueryable(Of Single)
Dim returnValue As Task(Of Single)
returnValue = source.SumAsync()
public static Task<float> SumAsync(
this IQueryable<float> source
)
[ExtensionAttribute]
public:
static Task<float>^ SumAsync(
IQueryable<float>^ source
)
static member SumAsync :
source:IQueryable<float32> -> Task<float32>
public static function SumAsync(
source : IQueryable<float>
) : Task<float>
參數
- source
類型:System.Linq.IQueryable<Single>
要計算加總的 Single 值序列。
傳回值
類型:System.Threading.Tasks.Task<Single>
表示非同步作業的工作。工作結果包含序列中值的加總。
使用注意事項
在 Visual Basic 和 C# 中,您可以在任何 IQueryable<Single> 類型物件中呼叫這個方法以做為執行個體。使用執行個體方法語法呼叫這個方法時,請省略第一個參數。如需詳細資訊,請參閱 https://msdn.microsoft.com/zh-tw/library/bb384936(v=vs.113)或 https://msdn.microsoft.com/zh-tw/library/bb383977(v=vs.113)。
例外狀況
例外狀況 | 條件 |
---|---|
ArgumentNullException | source 為 null。 |
InvalidOperationException | source 不會實作 IDbAsyncQueryProvider。 |
備註
不支援相同內容執行個體上的多個作用中作業。 使用 'await' 確保在此內容上呼叫另一個方法之前,所有非同步作業都已完成。