galileo_orm_service 3.0.0 copy "galileo_orm_service: ^3.0.0" to clipboard
galileo_orm_service: ^3.0.0 copied to clipboard

Service implementation that wraps over galileo ORM Query classes.

galileo_orm_service #

Pub build status

Service implementation that wraps over galileo ORM Query classes.

Installation #

In your pubspec.yaml:

dependencies:
    galileo_orm_service: ^1.0.0

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 `galileo_orm_generator` and `Model`).
  // **
  app.use<int, Todo, OrmService<int, Todo, TodoQuery>>(
      '/api/todos', todoService);
0
likes
40
pub points
0%
popularity

Publisher

verified publishergalileodart.com

Service implementation that wraps over galileo ORM Query classes.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

galileo_framework, galileo_orm

More

Packages that depend on galileo_orm_service