All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.doolse.simpledba.RelationDef.scala Maven / Gradle / Ivy

There is a newer version: 0.1.9
Show newest version
package io.doolse.simpledba

import shapeless.HList
import shapeless.ops.record.SelectAll

/**
  * Created by jolz on 8/06/16.
  */
case class RelationDef[T, CR <: HList, KL <: HList, CVL <: HList]
(baseName: String, mapper: ColumnMapper[T, CR, CVL])(implicit ev: SelectAll[CR, KL]) {
  def columns = mapper.columns
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy