0

我有一个模型,我用它来使用awesome_nested_set插件跟踪分层组织中的权限。我遇到了一个问题,两个named_scopes 链接在一起时会创建一个 duplication INNER JOIN

class Group < ActiveRecord::Base
  acts_as_nested_set
  has_many :memberships
  has_many :accounts, :through => :memberships
  has_many :authorizations
  has_many :users, :through => :authorizations
end

这两个named_scopes 位于Account模型中,用于按用户和组过滤帐户:

named_scope :in_group, lambda { |id|
  group_ids = Group.find(id).self_and_descendants.collect(&:id)
  { :joins => :memberships, :conditions => ["memberships.group_id in (?)", group_ids] }
}

named_scope :for, lambda { |user|
  groups = user.authorizations.groups.collect(&:id) unless user.admin?
  user.admin ? {} : { :joins => :groups, :conditions => ["groups.id IN (?)", groups] }
}

这两个named_scopes 都需要 join memberships,但他们不应该能够做到这一点而无需重复吗?当它们链接在一起时,mysql会出现以下错误:

Mysql::Error: Not unique table/alias: 'memberships': SELECT `accounts`.* FROM `accounts` INNER JOIN `memberships` ON accounts.id = memberships.account_id INNER JOIN `memberships` ON `accounts`.`id` = `memberships`.`account_id` INNER JOIN `groups` ON `groups`.`id` = `memberships`.`group_id` WHERE ((memberships.group_id in (54,94)) AND (groups.id IN (54,94)))  ORDER BY business_name, location_name LIMIT 0, 75
4

1 回答 1

1

尝试将 for 命名范围中的 join 语句更改为:joins => {:memberships => :groups}. 我怀疑 has_many through 关系可能会导致它。

于 2010-07-09T19:28:50.767 回答