method
to_key
v4.0.2 -
Show latest stable
- Class:
ActiveModel::Conversion
to_key()public
Returns an Enumerable of all key attributes if any is set, regardless if the object is persisted or not. If there no key attributes, returns nil.
class Person < ActiveRecord::Base end person = Person.create person.to_key # => [1]