Room database relation not applying
I can't make the relation between these entities.
with SQL query I can make relation but with room not working.
I think this a room bug but don't know why. and taking me a lot of time.
using 2.2.6 version.
@Entity
data class Movie(
@SerializedName("country")
val country: String,
@SerializedName("genres")
val genres: List,
@SerializedName("id")
@PrimaryKey(autoGenerate = false)
val id: Int,
@SerializedName("images")
val images: List? = null,...