Yuri Drigin
10/18/2021, 2:34 PM@Entity
data class TagInfoEntity(
@PrimaryKey val tagName: String,
val tagDescription: String
........
)
@Entity
data class TokenEntry(
@PrimaryKey val address: String,
val name: String,
.......
// there are list with tags names. Can be different length
val tagsList: List<String>
) {
Is there way to setup Relation
to fetch it together or any join command?
Thanks in advanced