method

convert_to_id

convert_to_id(value)
private

No documentation available.

# File activerecord/lib/active_record/relation/predicate_builder/association_query_value.rb, line 33
        def convert_to_id(value)
          if value.respond_to?(primary_key)
            value.public_send(primary_key)
          else
            value
          end
        end