scopes with lambda and arguments in Rails 4 style?

前端 未结 6 928
长情又很酷
长情又很酷 2020-12-04 06:34

I\'m wondering how the following is done in Rails 4 or if I just use the Rails 3 approach for using a lambda that can pass an argument the same way with 4 as I do with 3.

6条回答
  •  孤城傲影
    2020-12-04 07:13

    To support associations:

    scope :find_lazy, -> (object) { where(object_id: object.id) }
    

提交回复
热议问题