.. | ||
example | ||
lib | ||
analysis_options.yaml | ||
CHANGELOG.md | ||
mono_pkg.yaml | ||
pubspec.yaml | ||
README.md |
angel_orm_service
Service implementation that wraps over Angel ORM Query classes.
Usage
Brief snippet (check example/main.dart
for setup, etc.):
// Create an ORM-backed service.
var todoService = OrmService<int, Todo, TodoQuery>(
executor, () => TodoQuery(),
readData: (req, res) => todoSerializer.decode(req.bodyAsMap));
// Because we provided `readData`, the todoService can face the Web.
// **IMPORTANT: Providing the type arguments is an ABSOLUTE MUST, if your
// model has `int` ID's (this is the case when using `angel_orm_generator` and `Model`).
// **
app.use<int, Todo, OrmService<int, Todo, TodoQuery>>(
'/api/todos', todoService);