Hi All, sorry if this the wrong place. I am trying to use DataFrame to output some data from a list of results. I want to use select to get only certain columns. My issue is that the DSL method doesn't want to let my code compile or recognise the column names. I used the following blog post as an example
https://blog.jetbrains.com/kotlin/2024/07/enhanced-column-selection-dsl-in-kotlin-dataframe/#selecting-by-index. This works fine
rawUserData.select { cols(0..2) }.head(3)
but the following doesn't `rawUserData.select { firstName and address.cols("city", "state")}.tail()`the compiler can't find the values firstName and insits on import some other address value.