Ruby on Rails - Annidato with_scope

Questo esempio mostra come possiamo annidare with_scope per recuperare risultati diversi in base ai requisiti.

# SELECT * FROM employees
# WHERE (salary > 10000)
# LIMIT 10
# Will be written as 

Employee.with_scope(
   :find => { :conditions => "salary > 10000",
   :limit => 10 }) do
   Employee.find(:all)
end

Ora, controlla un altro esempio di come l'ambito è cumulativo.

# SELECT * FROM employees
# WHERE ( salary > 10000 )
# AND ( name = 'Jamis' ))
# LIMIT 10
# Will be written as

Employee.with_scope(
   :find => { :conditions => "salary > 10000", :limit => 10 }) do
      Employee.find(:all) 
      Employee.with_scope(:find => { :conditions => "name = 'Jamis'" }) do
      Employee.find(:all) 
   end
end

Un altro esempio che mostra come l'ambito precedente viene ignorato.

# SELECT * FROM employees
# WHERE (name = 'Jamis')
# is written as

Employee.with_scope(
   :find => { :conditions => "salary > 10000", :limit => 10 }) do
   Employee.find(:all) 
   
   Employee.with_scope(:find => { :conditions => "name = 'Jamis'" }) do
      Employee.find(:all) 
   end
	
   # all previous scope is ignored
   Employee.with_exclusive_scope(:find => { :conditions => "name = 'Jamis'" }) do
      Employee.find(:all)
   end
end
rails-references-guide.htm