是否有任何方法可以在没有映射的情况下包含DbRef?
同样,
var chats = Database.db.GetCollection<ChatData>("Chats").Include(x=>x.User);
到
var chats = db.GetCollection("Chats").Include(x=>x["User"]);
答案 0 :(得分:0)
现在有可能,在当前的主分支中。
使用db.GetCollection("Chats").Include("User")
现在包含支持字符串作为路径,例如:“User
”,“Customer.Address
”
下一版本将在NuGet中提供。