You can read up on the code generation here. <http...
# exposed
s
You can read up on the code generation here. http://www.querydsl.com/static/querydsl/latest/reference/html/ch03s03.html The entire reference documentation is here. http://www.querydsl.com/static/querydsl/latest/reference/html_single/ Basically, we have build-tool integrated code generation (as plugin, where our main focus is ant and maven) using either apt for JPA, or plugins that read the schema. We also have a GenericExporter if you don't have apt, or if you don't want to recreate the classes on every build, this creates the metamodel based on reflection (properties, annotations, etc). We could use the class files produced by the Kotlin compiler in the GenericExporter case, since it should just behave like a JVM citizen right? As for the code generation at build time, we'll need some more information.