将 BSON 数组添加到 MongoDB 中的 BsonDocument
如何使用 C# 驱动程序将 BsonArray 添加到 MongoDB 中的 BsonDocument?我想要这样的结果
{
author: 'joe',
title : 'Yet another blog post',
text : 'Here is the text...',
tags : [ 'example', 'joe' ],
comments : [ { author: 'jim', comment: 'I disagree' },
{ author: 'nancy', comment: 'Good post' }
]
}
How can I add BsonArray to BsonDocument in MongoDB using a C# driver? I want a result something like this
{
author: 'joe',
title : 'Yet another blog post',
text : 'Here is the text...',
tags : [ 'example', 'joe' ],
comments : [ { author: 'jim', comment: 'I disagree' },
{ author: 'nancy', comment: 'Good post' }
]
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下语句在 C# 中创建上述文档:
您可以使用以下命令测试是否产生了正确的结果:
You can create the above document in C# with the following statement:
You can test whether you produced the correct result with:
您还可以在 BsonDocument 已经存在之后添加数组,如下所示:
you can also add the array after the BsonDocument already exists, like this: