У меня есть следующая модель
class User < ActiveRecord::Base has_many :assignments has_many :roles, :through => :assignments has_one :profile end
Как бы поступил и запрос активной записи для выбора профилей пользователей с определенной ролью?
.includes(:relation) может быть полезно
.includes(:relation)