我正在使用MongoDB c#driver 2.0。我试图在没有指定类型或类的情况下获取集合。观察:
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
时指定一个类。有没有办法在不指定类的情况下使用MongoDB驱动程序?
答案 0 :(得分:7)
MongoDb支持泛型参数中的dynamic
类型。
IMongoCollection<dynamic> _myCollection = _mongoDb.GetCollection<ClassHere>("Collection");
请参阅http://mongodb.github.io/mongo-csharp-driver/2.0/what_is_new/#new-api