You could add an inline reified helper fun that wo...
# getting-started
r
You could add an inline reified helper fun that would allow
val testDao = db.open<TestDAO>()
or
val testDao: TestDAO = db.open()
, but no, it isn't needed. @roberto.guerra's answer will do what you want without it.