0
Public ReadOnly Property logs() As CloudTableQuery(Of adlog)
Get
Return CreateQuery(Of adlog)("adlog").AsTableServiceQuery()
End Get
End Property
我有下面的代碼執行()CloudTableQuery的功能似乎無限
Dim oContext = New kdlib.kdlogs.adlog_context()
Dim q = From adlogs In oContext.logs Where adlogs.PartitionKey = "xxxxxx"
會帶回只有1000行
如果我添加.Execute()
,因爲我在其他地方見過:
Dim q = From adlogs In oContext.logs.Execute() Where adlogs.PartitionKey = "xxxxxx"
要求永無止境
我真的不明白。下面
這裏基於全成答案
編輯現在的工作
Dim azt_context As New tableContextGet
Dim azt_query As CloudTableQuery(Of adlog)
azt_query = azt_context.CreateQuery(Of adlog)("adlog").Where(Function(e) (e.PartitionKey = "xxx")).AsTableServiceQuery()
Dim azt_result = azt_query.Execute()
然後azt_result.ToList
Execute()在參數之前是鍵,謝謝純邏輯。 –