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

skinny.orm.SkinnyMapper.scala Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
package skinny.orm

/**
 * Basic SkinnyMapper implementation.
 *
 * @tparam Entity entity
 */
trait SkinnyMapper[Entity] extends SkinnyMapperWithId[Long, Entity] {
  override def rawValueToId(value: Any) = value.toString.toLong
  override def idToRawValue(id: Long) = id
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy