https://github.com/consoleau/kotlin-jpa-specification-dsl
how to reference to composite key if data is object type ?
i have problem with specifications in spring-data.
for example
fun hasName(name: String?): Specifications<TvShow>? = name?.let {
TvShow::name.equal(it) <<<<<< this problem name is field object and i would change to TvShow::compositeKey.name.equal ….
}