1
我有一個現有的軌查詢,但它不與mongoid。我的工作需要這樣轉換,它與mongoid轉換軌查詢到mongoid查詢
這裏的工作原理是查詢
scope :between, -> (sender_id,recipient_id) do
where("(conversations.sender_id = ? AND conversations.recipient_id =?) OR (conversations.sender_id = ? AND conversations.recipient_id =?)", sender_id,recipient_id, recipient_id, sender_id)
end
我是新來mongoid我試過,但沒能找到合適的解決方案
Mongoid 3.4.2
Rails 5.0.1
ruby '2.3.0'
謝謝你的工作 – user6551529