angel3_orm_service

Last updated:

0 purchases

angel3_orm_service Image
angel3_orm_service Images
Add to Cart

Description:

angel3 orm service

Angel3 ORM Service #




Service implementation that wraps over Angel3 ORM Query classes.
Installation #
In your pubspec.yaml:
dependencies:
angel3_orm_service: ^8.0.0
copied to clipboard
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);
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.