Module: ActiveRecord::AttributeMethods::PrimaryKey
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/active_record/attribute_methods/primary_key.rb
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary collapse
-
#id ⇒ Object
Returns the primary key value.
-
#id=(value) ⇒ Object
Sets the primary key value.
-
#id? ⇒ Boolean
Queries the primary key value.
-
#id_before_type_cast ⇒ Object
Returns the primary key value before type cast.
-
#to_key ⇒ Object
Returns this record’s primary key value wrapped in an Array if one is available.
Instance Method Details
#id ⇒ Object
Returns the primary key value.
17 18 19 20 |
# File 'lib/active_record/attribute_methods/primary_key.rb', line 17 def id sync_with_transaction_state read_attribute(self.class.primary_key) end |
#id=(value) ⇒ Object
Sets the primary key value.
23 24 25 26 |
# File 'lib/active_record/attribute_methods/primary_key.rb', line 23 def id=(value) sync_with_transaction_state write_attribute(self.class.primary_key, value) if self.class.primary_key end |
#id? ⇒ Boolean
Queries the primary key value.
29 30 31 32 |
# File 'lib/active_record/attribute_methods/primary_key.rb', line 29 def id? sync_with_transaction_state query_attribute(self.class.primary_key) end |
#id_before_type_cast ⇒ Object
Returns the primary key value before type cast.
35 36 37 38 |
# File 'lib/active_record/attribute_methods/primary_key.rb', line 35 def id_before_type_cast sync_with_transaction_state read_attribute_before_type_cast(self.class.primary_key) end |
#to_key ⇒ Object
Returns this record’s primary key value wrapped in an Array if one is available.
10 11 12 13 14 |
# File 'lib/active_record/attribute_methods/primary_key.rb', line 10 def to_key sync_with_transaction_state key = self.id [key] if key end |