Get DAO with weak-typing in OrmLite?

2019-09-15 04:43发布

问题:

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?