angel_orm 2.0.0-dev
angel_orm: ^2.0.0-dev copied to clipboard
Runtime support for Angel's ORM.
1.0.0-alpha+11 #
- Removed PostgreSQL-specific functionality, so that the ORM can ultimately target all services.
- Created a better
Joinmodel. - Created a far better
Querymodel. - Removed
lib/server.dart
1.0.0-alpha+10 #
- Split into
angel_orm.dartandserver.dart. Prevents DDC failures.
1.0.0-alpha+7 #
- Added a
@belongsToManyannotation class. - Resolved #20. The
PostgreSQLConnectionPoolkeeps track of which connections have been opened now.
1.0.0-alpha+6 #
DateTimeSqlExpressionBuilderwill no longer automatically insert quotation marks around names.
1.0.0-alpha+5 #
- Corrected a typo that was causing the aforementioned test failures.
==becomes=.
1.0.0-alpha+4 #
- Added a null-check in
lib/src/query.dart#L24to (hopefully) prevent it from crashing on Travis.
1.0.0-alpha+3 #
- Added
isIn,isNotIn,isBetween,isNotBetweentoSqlExpressionBuilderand its subclasses. - Added a dependency on
package:meta.