Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我为我的用户模型编写了这个范围,但由于“或”而无法正常工作。我能怎么做 ?
scope :offline, ->{ where((online: false).or(name: 'Undefined')) }
谢谢
尝试这个
scope :offline, lambda { where( "online = ? OR name = ?", false, 'undefined') }