0
想象一下ActiveRecord::Base
的子類Podcast
。如何獲取ActiveRecord :: Relation實例創建的ActiveRecord類?
如果我有一個ActiveRecord::Relation
實例該類創建:
podcasts = Podcast.where(...)
有沒有辦法來推斷從中podcasts
關係創建不執行查詢類?
想象一下ActiveRecord::Base
的子類Podcast
。如何獲取ActiveRecord :: Relation實例創建的ActiveRecord類?
如果我有一個ActiveRecord::Relation
實例該類創建:
podcasts = Podcast.where(...)
有沒有辦法來推斷從中podcasts
關係創建不執行查詢類?
你應該能夠調用的關係model
:
Podcast.where(...).model #=> Podcast
什麼'podcasts.methods'返回? – dax