我在 Mongoid 中有以下文档结构:
class Post
include Mongoid::Document
field "title", type: String
field "body", type: String
field "category_name", type: String
field "category_id", type: Integer
end
我需要选择所有现有类别的帖子进行搜索。如果这是 SQL,我会:
SELECT distinct category_name, category_id FROM posts
我将如何在 Mongoid 的 SQL 查询中执行此操作?