模型的 default_scope 中的日期条件
我想确保只有具有观看日期的电影才会被带回并按该值升序排列。
我认为我非常接近以下内容:
default_scope :conditions => { :watched_date => not null },
:order => 'watched_date ASC'
但我不知道如何为非空日期添加条件。
I want to ensure that only Movies with a watched date are brought back and ordered by that value in ascending order.
I think I'm fairly close with the following:
default_scope :conditions => { :watched_date => not null },
:order => 'watched_date ASC'
But I don't know how to add a condition for a non-null date.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将条件更改为这样,它会起作用吗?:
您可能需要包含表名称,以防它在连接中使用,如下所示:
Does it work if you change the conditions to this?:
You might want to include the table name incase this is used in joins like so: