Rails includes with scope

后端 未结 4 747
耶瑟儿~
耶瑟儿~ 2021-02-05 01:30

I have a model called Author. An author has many Articles. Articles have a scope called .published that does: where(published: true).

I want to load the author, with the

4条回答
  •  南笙
    南笙 (楼主)
    2021-02-05 02:01

    I would specify a scope on the Author called with_published_articles like this:

    scope :with_published_articles, -> { joins(:articles).merge(Article.published) }
    

    This will resolve your problem to also specify the where(active: true) on your Author model in case the published behaviour of and Article will change in the future.

    So now you can call:

    Author.with_published_articles.find(params[:author_id])
    

提交回复
热议问题