ormlite-android-extras
ormlite-android-extras copied to clipboard
notifyContentChanged is called for every update, even inside a batch update
If I call dao.callBatchTasks(), I expect to be able to perform a bunch of updates all at once in order to improve performance. It appears that notifyContentChanged is being called for every create/update/delete whether batch is enabled or not, which is forcing the ui to reload everything in my adapter after each change to the db.
Need a way to disable notifyContentChanged inside of batch updates