Marcin Środa
09/03/2021, 1:59 PMdata class Membership(
@PrimaryKey
val id: String,
val channel: String, // channelId
val member: String, // memberId
)
data class Channel(
@PrimaryKey val id: String,
val name: String,
...
)
data class Member(
@PrimaryKey val id: String,
override val name: String,
...
)
Is it possible to create a ChannelWithMembers
and MemberWithChannels
with relations?Marcin Środa
09/06/2021, 9:02 AMchannelId
and memberId
it works like a charm. Is it by design or bug?yigit
09/08/2021, 9:36 PM