LiteDB包含没有映射的BsonDocument

时间:2016-12-16 01:11:09

标签: c# litedb nosql

是否有任何方法可以在没有映射的情况下包含DbRef?

同样,

var chats = Database.db.GetCollection<ChatData>("Chats").Include(x=>x.User);

var chats = db.GetCollection("Chats").Include(x=>x["User"]);

1 个答案:

答案 0 :(得分:0)

现在有可能,在当前的主分支中。

使用db.GetCollection("Chats").Include("User")

现在包含支持字符串作为路径,例如:“User”,“Customer.Address

下一版本将在NuGet中提供。