宇航员(CosmosDb)-查询不起作用

时间:2019-11-02 17:23:18

标签: c# azure-cosmosdb

我尝试使用Cosmonaut查询CosmosDb。我会遵循其文档,以更好地了解如何read/query

这是我在回购中的方法

 public async Task<IEnumerable<Object>> GetAsync(GetObjects query)
    {

        try
        {
            var result = await _objectStore.Query().ToListAsync();
            //var testOne= await _objectStore.Query(new FeedOptions { PartitionKey = new PartitionKey(query.foo) }).ToListAsync();
            return result;
        }
        catch (Exception e)
        {
            throw e;
        }
    }

很奇怪,当我点击下面的行时,它终止而没有引发任何异常,因此很难知道是什么问题。

 var result = await _objectStore.Query().ToListAsync();
 //var testOne= await _objectStore.Query(new FeedOptions { PartitionKey = new PartitionKey(query.foo) }).ToListAsync();

有人有什么主意吗?

0 个答案:

没有答案