我正在使用paranoia gem 来“软删除”记录。现在我需要为关联模型急切加载这些记录,其中一些可能已被删除。偏执狂将此添加default_scope
到“偏执狂”模型中:
default_scope :conditions => { :deleted_at => nil }
所以实际上,我有这些(简化的)模型:
class Product
has_many :orders
default_scope :conditions => { :deleted_at => nil }
end
class Order
belongs_to :product
end
我想要实现的是在访问订单时预先加载产品:
Order.includes(:product)
这(来自How to use unscoped on associated Relations in Rails3?)在这里不起作用:
Product.unscoped { Order.includes(:product) }
我知道我可以创建一个自定义belongs_to
关系来添加条件(如在Eager loading nested association and scope 中),但我找不到删除现有条件的方法,如果这可能的话。
问题:如何防止将默认范围应用于急切加载查询?