objectbox-dart
objectbox-dart copied to clipboard
Flutter database for super-fast Dart object persistence
fixes #287
I have an object that looks like ``` @Entity() class Post { int id; List? readByIds // other properties queryObject({this.id = 0, this.readByIds}); } ``` And I would like to...
ObjectBox core comes with time-series support - consider exposing in Dart. Basic characteristics: * there's an "id-companion" annotation for a millisecond or nanosecond-precision time field (`OBXPropertyFlags_ID_COMPANION`) * box (or some...
I was reading the [release notes for dart 2.12](https://medium.com/dartlang/announcing-dart-2-12-499a6e689c87), and I noticed objectbox got an honorable mention, wrt ffi usage! Good job people! From the article, we can expect better...
We could provide a `Lazy` wrapper to improve loading large data. It could work similarly to `ToOne` relation wrapper, with `value` getter loading the content on-demand. ```dart @Entity TestEntity {...
We should have a way to test ObjectBox runs on mobile (simulator) Android and iOS. From the quick look in the past I think our current tests (/test folder) can't...
When building with flutter I'm getting this error: `fatal error: lipo: -extract armv7 specified but fat file: /build/ios/Debug-iphoneos/Runner.app/Frameworks/ObjectBox.frame`work/ObjectBox does not contain that architecture` As much as I don't think I...
Currently, all supported functionality is tested in dart, with tests in `objectbox/test/`. While this should work fine and is great for development, it would be nice if we could run...
When first installing a version of the app, openStore works as expected and creates the store and boxes as needed on launch. After updating the app on the phone it...
Public pull request to run GitHub Actions.