我已使用Relation在Room中添加了一对多关系。我参考了这篇文章,为Room中的关系编写了以下代码。
该帖子介绍了如何从数据库中读取值,但是将实体存储到数据库中导致结果userId
为空,这意味着两个表之间没有关系。
我不知道什么是理想的途径,insert
一个User
并List of Pet
到数据库中,同时具有userId
价值。
1)用户实体:
@Entity
public class User {
@PrimaryKey
public int id; // User id
}
2)宠物实体:
@Entity
public class Pet {
@PrimaryKey
public int id; // Pet id
public int userId; // User id
public String name;
}
3)UserWithPets POJO:
// Note: No annotation required at this class definition.
public class UserWithPets {
@Embedded
public User user;
@Relation(parentColumn = "id", entityColumn = "userId", entity = Pet.class)
public List<Pet> pets;
}
现在,从数据库中获取记录,我们使用以下命令DAO
:
@Dao
public interface UserDao {
@Insert
fun insertUser(user: User)
@Query("SELECT * FROM User")
public List<UserWithPets> loadUsersWithPets();
}
编辑
我已经在问题跟踪器上创建了此问题https://issuetracker.google.com/issues/62848977。希望他们会为此做些事情。