如何在 Kotlin Exposed 中获取插入的行?

How to get the inserted row in Kotlin Exposed?

以下是我们如何获取添加行的 ID (source):

val munichId = Cities.insert {
    it[name] = "Munich"
} get Cities.id

获取整行怎么样?我将 map 用于 select 操作,但它不适用于 insert

val row = Cities.insert {
    it[name] = "Munich"
}.resultedValues!!.first()