我正在使用 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 版的驱动程序和 1.5.1.0 版的 MongoRepository。
我必须参考什么命名空间才能获得 DBRef?