How can I query records which have not been committed to database using dataContext / dataManager or any other construct?
Hello @getshahzad,
You can use dataContext to track changed entities.
For example:
dataContext.getModified(); //Returns an immutable set of entities registered as modified.
dataContext.getRemoved(); //Returns an immutable set of entities registered for removal.
Regards,
Nikita