LiteDB 包含没有映射的 BsonDocument

LiteDB incldue BsonDocument without mapping

有没有什么方法可以在不映射的情况下包含 DbRef?

喜欢,

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

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

现在可以,在当前的 master 分支中。

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

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

将在下一版本的 NuGet 中提供。