I want to synchronize only data belongs to particular user, As I have number of transaction record.
My requirement is, once the user logged in, after that load only data belongs to login user to SQLITE DB.
Now all the data irrespective of user is getting synchronized to the SQLITE database, which is not required.
Below are the steps which I have followed:
1. After user successfully logged in, calling the findAll() method.
2. After user successfully logged in, calling the find(String searchValue) method.
But by applying both the steps, I am not able to restrict the data to synchronized to SQLITE database.
Thanks,
Sanjit