Public ReadOnly Property logs() As CloudTableQuery(Of adlog)
Get
Return CreateQuery(Of adlog)("adlog").AsTableServiceQuery()
End Get
End Property
我有以下代码
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