memory_adapter 0.0.1
memory_adapter: ^0.0.1 copied to clipboard
A memory adapter for the dart active record implementation. Enables faster testing and development.
MemoryAdapter for ActiveRecord #
This is an In-Memory adapter for the ActiveRecord implementation in dart.
Why an in-memory adapter? #
This adapter is for quick testing purposes only. It does not (really) support
migrations, but it simulates a database adapter by enabling all important
interface methods. The where-method throws an exception, accessing data
is only possible via the findByVariable method.