我有一个where
看起来像这样的 Rails ActiveRecord:
Things.where('blahs.foo_id = ? OR bar_id = ?', user.id, user.id)
我想user.id
用来代替这两个?
。有没有办法像我一样不重复?
我有一个where
看起来像这样的 Rails ActiveRecord:
Things.where('blahs.foo_id = ? OR bar_id = ?', user.id, user.id)
我想user.id
用来代替这两个?
。有没有办法像我一样不重复?