method
transaction
v2.2.1 -
Show latest stable
- Class:
ActiveRecord::Associations::AssociationCollection
transaction(*args)public
Starts a transaction in the association class’s database connection.
class Author < ActiveRecord::Base has_many :books end Author.find(:first).books.transaction do # same effect as calling Book.transaction end