这种类型的过滤是否适用于belongs_to关联?

时间:2013-12-13 07:49:56

标签: ruby-on-rails

对于招聘应用程序,我有一个用户模型,它有许多common_app。

每个用户实际上只有1个common_app,但如果以后他们有更多,我将其设置为has_many关联。

在常见应用中,我正在考虑使用以下数据 - >

user_id:integer
current_city:string
grad_year:integer
read_type:string
listen_speak:string
time_in_china:integer
desired_industry:(not sure, will be a multi-select picklist)
location_pref:(not sure, will be a multi-select picklist)

我对此感到困惑的是,应用程序的一部分功能是根据用户的答案过滤用户。

通过这种类型的关联,我能否根据他们的答案过滤所有用户?即所有用户谁是grad_year是2005年?

如果是,我将如何编写命令来执行此操作?

1 个答案:

答案 0 :(得分:0)

class User < ActiveRecord::Base
  has_many :apps
end

class App < ActiveRecord::Base
  belongs_to :user
end

User.includes(:apps).where('apps.grad_year = 2005')