RushOrm icon indicating copy to clipboard operation
RushOrm copied to clipboard

Object-relational mapping for Android

Results 43 RushOrm issues
Sort by recently updated
recently updated
newest added

This is most likely caused by a change in data structure or new RushObject. This issue should be resolved by a database migration. This can be done by updating db...

Hi Stuart, Love Rush-ORM. But am getting a crash within RushCore.initialize() in Android 6.0.1. This didn't happen in the earlier versions (4.2+). The call to RushCore.initialize() is within the onCreate()...

Native Crash when I receive a sms message in my test phone: 06-06 10:10:34.228 23802 23895 F art : vendor/intel/art-extension/runtime/class_linker.cc:5561] Check failed: super_class->IsResolved() 06-06 10:10:34.519 23802 23895 F art :...

As "compile" is going to be deprecated end-2018, this PR replaces with "implementation" that is the new usage.

Hi Stuart, this takes about 30 ms ` List data = new RushSearch().find(Transaction_Data.class); Timber.e("transactions count %s", data.size()); RushCore.getInstance().delete(data); ` but the below code is taking around 3-4 secs `RushCore.getInstance().deleteAll(Transaction_Data.class); '...

Hello, First of all, thank you for this library ;) Just a quick one that fortunately has a fix but can be added to future updates: `new RushSearch().startGroup().whereIsNotNull("user").and().whereEqual("user", user).endGroup().orderDesc("created").find(AssetModel.class);` is...

Maybe the possibility to add sorting for a @RushList annotated field would lead to a more elegant code ? For a one to many relationship, currently I cannot think of...

It would be good if the data could be shared between other applications through ContentProviders or something equivalent.

enhancement

Hello! I have these classes: ``` public class Smartphone extends RushObject { private int id; // could be Long, not problem private Position position; // extra fields } public class...