objectbox-java
objectbox-java copied to clipboard
Android Database - first and fast, lightweight on-device vector database
Multiple emissions from a data subscription when one is expected, after quickly recreating box store
## Issue Basics - ObjectBox version: 2.3.4 - Reproducibility: Always ## Reproducing the bug ### Description While running multiple JUnit tests for an ObjectBox store (using base code copied from...
android 8.0 huawei P9 objectVersion:2.4.0 I inserted 12w pieces of data into Message table ```java @Entity public class Message implements Serializable { @Id public long id; @Index private long serverId;...
It's in the title, but a concrete example would be. Say we have a model with a String field called `field`. We have two objects in the database, one of...
is possible to sort parent items by child property ? for example : Author - name - birthday Birthday - date i want list all authors, but when `birthday !=...
I need run objectbox-java on Windows XP Embedded but the application cannot start.  I have installed the redistributable 2015-2019.  Can you help me? Thanks in advanced.
## Issue Basics - ObjectBox version: 1.4.1 - Reproducibility: always ## Reproducing the bug ### Description Basically I am trying to remove that table because it is getting ridiclously large...
```java @Entity public class City { @Id public long id; public String ; } ``` For city entries like these İzmir Ankara İstanbul Çorum While querying like ``` boxStore.boxFor(City.class).query().contains(City_.name, "I");...
i think just like greendao for toMany relation need `@OrderBy` annotation example : ```java @Entity public class Customer { @Id private Long id; @Backlink(to = "customerId") @OrderBy("date ASC") private ToMany...
With `core.autocrlf = true` for git on Windows the meta model file `default.json` is checked out with CRLF line endings. ObjectBox gradle plugin generates `default.json` with LF line endings when...
I'm trying to use obervable queries to detect when the user is logged in my application in order to start fetching data in background with correct authorization token. ``` ......