Trong phiên bản hiện tại mongo-go-driver v1.0.3 , các tùy chọn được đơn giản hóa. Ví dụ để thực hiện tìm, sắp xếp và giới hạn:
import (
"go.mongodb.org/mongo-driver/bson"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
)
options := options.Find()
// Sort by `_id` field descending
options.SetSort(bson.D{{"_id", -1}})
// Limit by 10 documents only
options.SetLimit(10)
cursor, err := collection.Find(context.Background(), bson.D{}, options)
Xem thêm các tùy chọn có sẵn trên godoc.org/go.mongodb.org/ mongo-driver / mongo / options
. Đặc biệt là FindOptions
cho tất cả các tùy chọn có thể có cho Find()
.