博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
default_scope and unscoped
阅读量:5290 次
发布时间:2019-06-14

本文共 510 字,大约阅读时间需要 1 分钟。

classPhoto
'complete') scope :batch, unscoped.where(:status=>'batch') scope :queue, unscoped.where(:status=>'queue') scope :ongoing, -> { where(end_at: nil) } scope :where_ceid_and_key, ->(ceid, key){where(["`ceid` = ? AND `key` = ?", ceid, key])} ...end
定义 或 去掉默认排序
class  < ::  def self.default_scope    where :published => true  endend.          # Fires "SELECT * FROM posts WHERE published = true".. # Fires "SELECT * FROM posts"

转载于:https://www.cnblogs.com/qinyan20/p/3643214.html

你可能感兴趣的文章
java调用oracle存储过程,返回结果集
查看>>
使用命令创建数据库和表
查看>>
数据库的高级查询
查看>>
HttpClient(一)-- HelloWorld
查看>>
dump调试函数
查看>>
Android 利用Sharp样式设置文本框EditText圆角形状
查看>>
[YTU]_2443 ( C++习题 复数类--重载运算符3+)
查看>>
sdut_1189
查看>>
归并排序
查看>>
机器视觉:SSD Single Shot MultiBox Detector
查看>>
走遍美国 —— 各州及其别名
查看>>
国内外免费电子书(数学、算法、图像、深度学习、机器学习)
查看>>
狄利克雷过程(Dirichlet Process)
查看>>
五子棋项目的实现(二)博弈树算法的描述
查看>>
Hibernate : Disabling contextual LOB creation as createClob() method threw error
查看>>
【bzoj4872】[Shoi2017]分手是祝愿 期望dp
查看>>
字符串元转分
查看>>
thinkphp 防sql注入
查看>>
201521123044 《Java程序设计》第1周学习总结
查看>>
winform 实现类似于TrackBar的自定义滑动条,功能更全
查看>>