Skip to content

Instantly share code, notes, and snippets.

@antico5
Created March 2, 2018 17:14
Show Gist options
  • Save antico5/bcb98cfbbf3ef3757d138724f7be9ceb to your computer and use it in GitHub Desktop.
Save antico5/bcb98cfbbf3ef3757d138724f7be9ceb to your computer and use it in GitHub Desktop.
scope_with_nested_condition.md
class Product < ApplicationRecord
  scope :active, -> { where(status: 'Active').where.not(inventory_cd: %w[NITRO DELIV]) }
end

class OrderLine < ApplicationRecord
  scope :with_active_product, -> { joins(:product).merge(Product.active) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment