标签: ruby-on-rails activerecord
想象一下名为ActiveRecord::Base的{{1}}子类。
ActiveRecord::Base
如果我从该类创建了Podcast实例:
Podcast
ActiveRecord::Relation
有没有办法推断出podcasts = Podcast.where(...) 关系创建的类<strong>而不执行查询?
podcasts = Podcast.where(...)
答案 0 :(得分:1)
您应该可以在关系中调用model:
model
Podcast.where(...).model #=> Podcast