objectbox-dart
objectbox-dart copied to clipboard
Flutter database for super-fast Dart object persistence
When syncing do we have an option to filter data that end up on a device for example on Couchbase we have what we call a channel where data can...
Operating system: Ubuntu 16.04 [to be confirmed for other OSs] Dart version: 2.4.1 When trying to call ObjectBox functions with e.g. invalid parameters, normally the error should be reported on...
I noticed there is an implementation of this in java, can we have something like that in dart? https://github.com/objectbox/objectbox-java/issues/310
Currently, the @Property Annotation is only available for fields, that are defined as such in the @Entity. ### Describe the solution you'd like It would be nice to be able...
Immutable entities support (see [Issue-307](https://github.com/objectbox/objectbox-dart/issues/307)) ```dart @Entity() class TestEntityImmutable { @Id(useCopyWith: true) final int? id; final int payload; TestEntityImmutable copyWith({int? id, int? payload}) => TestEntityImmutable( id: id, payload: payload ??...
Publish with last stable Flutter+Dart (2.2.3 and 2.13.4) to correctly exclude all ignored files. Wait with upgrading until - https://github.com/dart-lang/pub/pull/3126 - https://github.com/dart-lang/pub/pull/3169 are included in https://github.com/flutter/flutter/wiki/Hotfixes-to-the-Stable-Channel
- ObjectBox version: [e.g. 0.14.0] 1.1.1 - Flutter/Dart SDK: [e.g. 2.0.0, or the output of `dart --version` or `flutter --version`] `Flutter 2.2.3 • channel stable • https://github.com/flutter/flutter.git Framework • revision...
When create a `IndexType.value` for a string field, and query using `lessOrEqual` and `lessThan` with the value larger than then last record, eg `\uffff`, the query return zero record instead...
### Describe the solution you'd like When the class (object) is defined everything within the object has data types. It would be great if relationships could get generated from types...
I would like another way to define entities for ObjectBox instead of using annotations. This can be useful if someone is using ProtocolBuffers to generate files. I've considered to use...