我必须从我的简单 mongo db 数据库中选择不同的记录。我有很多简单的记录,这些记录看起来像这样:
{"word":"some text"}
我的代码非常简单。
const string connectionString = "mongodb://localhost";
var client = new MongoClient(connectionString);
MongoServer server = client.GetServer();
MongoDatabase database = server.GetDatabase("text8");
MongoCollection<Element> collection = database.GetCollection<Element>("text8");
MongoCursor<Element> words = (MongoCursor<Element>)collection.FindAll();
但我不知道如何从数据库中选择不同的单词。有人可以给我一些建议吗?