我有一个使用"labix.org/v2/mgo"
库制作的命令
err = getCollection.Find(bson.M{}).Sort("department").Distinct("department", &listedDepartment)
这工作正常。但是现在我正在转向官方的 golang mongo-driver "go.mongodb.org/mongo-driver/mongo"
,我想在那个库中运行这个命令,但是没有直接的函数可以与 Find then Sort then Distinct 一起使用。如何使用这个 mongo-driver 来实现这个命令。变量listedDepartment
是 的类型[]string
。请建议我知道解决方案。
陪伴而非守候
相关分类