dimsuz
05/24/2019, 12:10 PMdata class Team(val players: List<Player>)
fun selectAllTeams(): List<Team> {
return db.teamQueries.whatGoesHere()
}
• Should I use a JOIN and group + map it manually?
• Should I perform 2 separate queries (select teams, for each select players) and use their mappers?
• Other?