Flowdock
method

convert_to_id

Importance_0
v7.1.3.2 - Show latest stable - 0 notes - Class: AssociationQueryValue
convert_to_id(value) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/relation/predicate_builder/association_query_value.rb, line 59
        def convert_to_id(value)
          return primary_key.map { |pk| value.public_send(pk) } if primary_key.is_a?(Array)

          if value.respond_to?(primary_key)
            value.public_send(primary_key)
          else
            value
          end
        end
Register or log in to add new notes.