Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一个 mongo 文档可以有一个具有多个值的键。例如。电话号码可以有多个值。我想在 c# driver API 的帮助下插入这个数组。请告诉我插入这些值的方法。谢谢。
你可以很容易地做到这一点。
BsonDocument doc = new BsonDocument(); BsonArray phones = new BsonArray(); phones.Add("123-456-7890"); phones.Add("234-567-8901"); doc.Add("phones", phones); collection.Insert(doc);
如果这不是您要找的,请告诉我们。