Is it possible to get the corresponding Dao in OrmLite
, without passing class name to createDao
, without a static type-checking?
Dao<Account, String> accountDao = DaoManager.createDao(connectionSource, Account.class);
But insert or update record by passing table / attribute name as string?
Do you know any Orm
available for Android, can do this?