提问人:L. Swifter 提问时间:11/17/2023 更新时间:11/17/2023 访问量:25
GreenDao如何通过其他列(不是主键id)更新表?
GreenDao how to update table by other column (not the primary key id)?
问:
我知道我可以使用这些代码来更新表,但它使用主键 ID 进行比较。
DaoSession daoSession = ((App) getApplication()).getDaoSession();
StudentDao studentDao = daoSession.getStudentDao();
studentDao.update(studentBean); //update by id
但有时,我需要使用其他列来更新表格,它可能像:
UPDATE STUDENT_TABLE SET ADDRESS = 'Texas' WHERE NAME = 'David';
如何使用greendao实现上述sql语句?
答: 暂无答案
评论
queryRaw
queryRaw