我正在使用MongoDB C#驱动程序,我想做类似https://stackoverflow.com/a/15248058/106866的事情。
所以我创建了一个这样的实体:
using System.Collections.Generic;
using MongoDB.Driver;
using MongoRepository;
using MongoDB.Bson;
using MongoDB;
...
public class Movie : Entity {
public string Title { get; set; }
public string Synopsis { get; set; }
public List<DBRef> Likes { get; set; }
}
但是DBRef会出现以下错误:
找不到类型或命名空间“DBRef”。
我使用的是驱动程序的1.8.1.20版和MongoRepository的1.5.1.0版。
我需要引用什么命名空间来获取DBRef?
答案 0 :(得分:1)
似乎链接问题中的类型错误,实际上应该是MongoDBRef