Module: DataMapper::Model::Transaction
- Included in:
- DataMapper::Model
- Defined in:
- lib/dm-core/model.rb
Overview
TODO: move to dm-more/dm-transactions
Instance Method Summary collapse
-
#transaction ⇒ DataMapper::Adapters::Transaction a new DataMapper::Adapters::Transaction with all DataMapper::Repositories of the class of this DataMapper::Resource added.
Produce a new Transaction for this Resource class.
Instance Method Details
#transaction ⇒ DataMapper::Adapters::Transaction a new DataMapper::Adapters::Transaction with all DataMapper::Repositories of the class of this DataMapper::Resource added.
Produce a new Transaction for this Resource class
- TODO: move to dm-more/dm-transactions
509 510 511 |
# File 'lib/dm-core/model.rb', line 509 def transaction DataMapper::Transaction.new(self) { |block_args| yield(*block_args) } end |