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