我有
a = Profile.last
a.mailbox.inbox
a.mailbox.sentbox
active_conversations = [IDS OF ACTIVE CONVERSATIONS]
a.mailbox.inbox & active_conversations
返回我需要的部分内容
我想
(a.mailbox.inbox & active_conversations) 和 a.mailbox.sentbox
但我需要它作为 SQL,以便我可以有效地订购它。我想通过 ('updated_at') 订购
我尝试过加入和其他事情,但它们不起作用。(a.mailbox.inboxa 和 sendbox 的类是
ActiveRecord::Relation::ActiveRecord_Relation_Conversation
但
(a.mailbox.inbox & active_conversations)
是一个数组
编辑
像 a.mailbox.inbox 以某种方式加入 a.mailbox.sentbox 这样简单的东西我应该能够使用,但我似乎也无法弄清楚。