最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c# - Project method in MongoDb collection is not working - Stack Overflow

programmeradmin1浏览0评论

The following code used to function under the version of MongoDb.Driver v2.12.2. Since I have upgrade the driver to v2.19.2 the following returns always null, notwithstanding there is data there. Any suggestions? The problem is with the project method.

public async Task<IEnumerable<PortfolioIdentifiers>> GetPortfolio(Guid portfolioId)
      {
          return await this.documentCollection
              .Find(x => x.Portfolio== portfolioId)
              .Project(x => x.PortfolioIdentifiers)
              .FirstOrDefaultAsync();
      }
发布评论

评论列表(0)

  1. 暂无评论