fun <reified T : Any> impl(schema: String, table: String): AllQuery<T>
Provides the default implementation for AllQuery. Can be used as follows. Note that constant values should be passed for schema and table, as doing otherwise would risk sql injection.
Example:
class ExampleRepo: AllQuery<Example> by AllQuery.impl(schema="public", table="example")