我有一个Notification
模型,其中许多列是“未读”。
我需要使用一种简单的方法在@notification 集合中查找“未读”值为假的记录。这样:
@notifications= Notification.all
@notifications.unread --> returns a subset of @notifications which are unread
@notifications.unread.count --> returns number of unread notifications
如何制作这种“未读”方法?