Spec-Zone.ru › Ruby on Rails 4.1

модуль ActiveRecord::AttributeMethods::PrimaryKey

Публичные методы экземпляров

id() Показать исходный код

Возвращает значение первичного ключа.

# File activerecord/lib/active_record/attribute_methods/primary_key.rb, line 17
def id
  return unless self.class.primary_key
  sync_with_transaction_state
  read_attribute(self.class.primary_key)
end
id=(value) Показать исходный код

Устанавливает значение первичного ключа.

# File activerecord/lib/active_record/attribute_methods/primary_key.rb, line 24
def id=(value)
  sync_with_transaction_state
  write_attribute(self.class.primary_key, value) if self.class.primary_key
end
id?() Показать исходный код

Запрашивает значение первичного ключа.

# File activerecord/lib/active_record/attribute_methods/primary_key.rb, line 30
def id?
  sync_with_transaction_state
  query_attribute(self.class.primary_key)
end
id_before_type_cast() Показать исходный код

Возвращает значение первичного ключа до приведения типов.

# File activerecord/lib/active_record/attribute_methods/primary_key.rb, line 36
def id_before_type_cast
  sync_with_transaction_state
  read_attribute_before_type_cast(self.class.primary_key)
end
id_was() Показать исходный код

Возвращает предыдущее значение первичного ключа.

# File activerecord/lib/active_record/attribute_methods/primary_key.rb, line 42
def id_was
  sync_with_transaction_state
  attribute_was(self.class.primary_key)
end
to_key() Показать исходный код

Возвращает значение первичного ключа этого запииси, обернутое в Массив, если он доступен.

# File activerecord/lib/active_record/attribute_methods/primary_key.rb, line 10
def to_key
  sync_with_transaction_state
  key = self.id
  [key] if key
end

Защищённые методы экземпляров

attribute_method?(attr_name) Показать исходный код
Вызывает метод суперкласса
# File activerecord/lib/active_record/attribute_methods/primary_key.rb, line 49
def attribute_method?(attr_name)
  attr_name == 'id' || super
end

© 2004–2016 David Heinemeier Hansson
Licensed under the MIT License.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API