frynet
frynet
Based on the above ideas I have something like this: https://gist.github.com/frynet/59b68faee6927bb95302a7d290e1cff8 @Tapac I have no time for PR yet. But you can consider my gist for the basis. It works...
Here's the `DISTINCT ON` for multiple columns version: ```kt fun Column.distinctOn(vararg extraColumns: Column) = DistinctOn(this, extraColumns) class DistinctOn(expr: Column, columns: Array) : Function(expr.columnType) { private val distinctNames = listOf(expr, *columns)...
> Try adding this annotation `@Join("bananas")` on `FruitRepoV1` > > ``` > @MongoRepository > @Join("bananas") > interface FruitRepoV1 : CrudRepository > ``` > > (or findById method) so when `FruitV1`...