如何在不指定 class 的情况下使用 MongoDB C# 驱动程序

How to use MongoDB C# Driver without specifying a class

我正在使用 MongoDB c# 驱动程序 2.0。我试图在不指定类型或 class 的情况下获取一个集合。观察:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using MongoDB.Bson;
using MongoDB.Driver;
using MongoDB.Driver.Core;
using MongoDB.Driver.Linq;
using MongoDB.Shared;

namespace Meshplex.Service.DataWarehouse
{
    public class ProfileControllerMongoDB
    {
        private IMongoDatabase _mongoDb;
        private IMongoCollection _myCollection;
        //private IMongoCollection<ClassHere> _myCollection;

        public ProfileDataControllerMongoDB()
        {
            _mongoDb = GetMongoDatabase();
            _myCollection = _mongoDb.GetCollection(GetCollectionName());
            //_myCollection = _mongoDb.GetCollection<ClassHere>("Collection");
        }

        public async Task<string> GetAllRecords()
        {
            //This should return json
            return await _myCollection.Find(new BsonDocument());
        }

如您所见,我应该在声明 IMongoCollection 时指定 class。有没有办法在不指定 class 的情况下使用 MongoDB 驱动程序?

MongoDb 支持通用参数中的 dynamic 类型。

IMongoCollection<dynamic> _myCollection = _mongoDb.GetCollection<ClassHere>("Collection");

http://mongodb.github.io/mongo-csharp-driver/2.0/what_is_new/#new-api