Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
第一个问题是,greenDao 什么时候为实体生成删除函数?entity.delete()调用 the和 the 有什么区别session.getEntityDao.delete(entity)?
entity.delete()
session.getEntityDao.delete(entity)
其次,如果我删除一个父实体,其子实体与父实体具有 ToOne 关系,我必须自己删除子实体,不是吗?实际上没有完成自动依赖“清理”,对吗?
entity.delete()要求实体“活跃”,dao.delete(entity)适用于所有实体。
dao.delete(entity)
greenDAO 中没有级联删除,您必须单独删除实体。