I have a project list and want to display only projects that have tasks. Is it possible to use a condition with count on a has_many relation?
# get my project list
Project.includes(:tasks).where(...)
class Project < ActiveRecord::Base
has_many :tasks
class Task < ActiveRecord::Base
belongs_to :project
Currently i am doing this through a loop but i dont think that this is the right way.