gpt4 book ai didi

android - 如何在 Room 中处理嵌套关系

转载 作者:IT王子 更新时间:2023-10-29 06:23:44 24 4
gpt4 key购买 nike

我有实体:

@Entity
public class A {
@PrimaryKey(autoGenerate = true)
public long id;
public A() {}
}

@Entity()
public class B {
@PrimaryKey @NonNull
public String id;
public String oneCId;
public String anotherCId;
public long aId;
public B() {}
}

@Entity
public class C {
@PrimaryKey @NonNull
public String id;
public String value;
public C() {}
}

和一些 POJO:

public class AWithB {
@Embedded
public A a;

@Relation(parentColumn = "id", entityColumn = "aId")
public List<BWithC> bWithC;

public AWithB() {}
}

public class BWithC {
@Embedded
public B b;
public C oneC;
public C anotherC;

public BWithC() {}
}

使用 DAO:

@Query("SELECT * FROM a")
List<AWithB> getAllNow();

问题出在 AWithB 的 @Relation 上,因为它只能指向实体。但该实体不能包括其他实体。我应该如何从数据库中返回整个结构?

最佳答案

看起来你可以有嵌套关系(文档页面上的 Javadoc 由于某种原因没有显示整个代码并且因此具有误导性)。

正在运行:

public class AWithB {
@Embedded
public A a;

@Relation(parentColumn = "id", entityColumn = "aId", entity = B.class)
public List<BWithC> bWithC;

public AWithB() {}
}

对于多对一关系,您仍然可以使用@Relation 注释。出于某种原因,你不能有简单的实例——你需要一个集合。但它正在工作:

public class BWithC {
@Embedded
public B b;
@Relation(parentColumn = "oneCId", entityColumn = "id")
public Set<C> oneC;
@Relation(parentColumn = "anotherCId", entityColumn = "id")
public Set<C> anotherC;

public BWithC() {}
}

关于android - 如何在 Room 中处理嵌套关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46395775/

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