I am using GreenDao ORM in my Android application.
As stated here , one can use
DaoSession.clear();
in order to clear ALL cached objects of the session.
My question is : How about clearing the cached objects of a specific entity (instead of all) ? How can I do that ?