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

scalikejdbc.orm.DataMapper.scala Maven / Gradle / Ivy

The newest version!
package scalikejdbc.orm

/**
 * Basic DataMapper implementation.
 *
 * @tparam Entity entity
 */
trait DataMapper[Entity] extends DataMapperWithId[Long, Entity] {
  override def rawValueToId(value: Any) = value.toString.toLong

  override def idToRawValue(id: Long): Any = id
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy