私はNotification
モデルを持っていて、その多くの列の1つが「未読」です。
簡単な方法を使用して、@notificationコレクションで「未読」の値がfalseであるレコードを見つける必要があります。そのような:
@notifications= Notification.all
@notifications.unread --> returns a subset of @notifications which are unread
@notifications.unread.count --> returns number of unread notifications
この「未読」メソッドを作成するにはどうすればよいですか?