Feature suggestion
Given
dc: DoricColumn[Person]
We would like to access fields of struct columns with the dynamic interface as follows:
dc.name: DoricColumn[String]
so that doric infers the type of the field.
(`dc.name[String]: DoricColumn[String] should work too).
Current behaviour
Currently, the dynamic interface allows us to access fields of structs as follows:
dc.child.name[String]
i.e. using a reserved keyword child before actually accessing the field.