About
Angel3, like many other Web server frameworks, features support for object-relational mapping, or ORM. ORM tools allow for conversion from database results to Dart classes.
Angel3's ORM uses Dart's build
system to generate query builder classes from your Model
classes, and takes advantage of Dart's strong typing to prevent errors at runtime.
Take, for example, the following class:
package:angel3_orm_generator
will generate code that lets you do the following:
This section of the Angel3 documentation consists mostly of guides, rather than technical documentation.
For more in-depth documentation, see the actual angel3_orm
project on Github:
https://github.com/dukefirehawk/angel/tree/master/packages/orm
Last updated