Thomas
Thomas
@iapicca Thanks for the update on the performance benchmark. Version 4 is basically the first release after we migrated the entire codebase to null safety whereby the primary focus was...
Any packages that uses `dart:mirrors` for reflections won't be able to compile and run in `AOT` mode. They can only be run in `JIT` mode. This is the limitation of...
Unfortunately `reflectable` is not a drop in replacement of `mirror`. It uses code generation instead of reflection. Basically, need to regenerate the code every time something is changed, this is...
I've make some adjustments on the two classes. A couple of notes: 1. Turning on migration can make debugging easier since can see what are the structure of the generated...
As it is, there is nothing preventing using Sqlite in the project. Just include the driver and should be good to go. Unless you are referring to using ORM with...
Added this to the requested feature. Will analyse it after `angel3_orm_mysql` refactoring is completed
From looking at the code, the impact on indexing/ranking would be minimal. Those typically come from how well the page itself is designed and optimized for search engine especially the...
Looks like the existing test cases do not cover this. Will resolve this issue as high priority and add a test case for it.
`double --> string --> double` casting has been removed in `angel_orm_generator` 7.0.1. All the numeric fields now goes directly to the database. Thanks for reporting this bug as the `casting`...
Based on initial scanning through the code, "x-frame-options" is not explicitly set anywhere. Will have to run through debug and analysis session to see where this comes from.