dorm_bloc_database 1.0.0-alpha.3
dorm_bloc_database: ^1.0.0-alpha.3 copied to clipboard
An in-memory database engine for dORM, using bloc.
dorm_bloc_database #
A dORM's Reference implementation using bloc.
Getting started #
Run the following commands in your command prompt:
dart pub add dorm_bloc_database
Using dorm_annotations and dorm_generator, generate your dORM code:
dart run build_runner build
This will create a Dorm class, which you can use to connect to this package.
Usage #
Create a Reference:
final Reference reference = Reference();
Then pass the reference created above to your generated Dorm class:
final Dorm dorm = Dorm(reference);