You can query eager loaded associations (via includes) same way you can with joins:
includes
joins
User.includes(:projects).where(projects: {description: "hoge"})