gpt4 book ai didi

android - 在房间数据库android中查询时合并两个实体

转载 作者:行者123 更新时间:2023-12-04 10:59:54 24 4
gpt4 key购买 nike

假设我们有 User 和 Order 实体

@Entity
public class User{
int id;
String name;
}
@Entity
public class Order{
int id;
int userId;
String meal;
}

所以当我查询
@Query("SELECT * FROM users")
public List<User> loadUsers();

我想要这个输出:
{"user":{"id":"","name":"",
"order":{"id":"","userId":"","meal":""}}}

最佳答案

您可以对这个问题使用 Relation 注释。注意,官方文档说 [ official reference ]:

The type of the field annotated with Relation must be a List or Set.


@Entity
public class User{
@PrimaryKey
int id;
String name;
@Relation(parentColumn = "id", entityColumn = "orderId", entity = Order.class)
List<Order> orders;
}

@Entity
public class Order{
@PrimaryKey
int id;
int userId;
String meal;
}

关于android - 在房间数据库android中查询时合并两个实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58882805/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com