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

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

The newest version!
package scalikejdbc.orm

import scalikejdbc.orm.crud.CRUDFeatureWithId

/**
 * Out-of-the-box CRUD mapper.
 *
 * @tparam Entity entity
 */
trait CRUDMapper[Entity]
  extends DataMapper[Entity]
  with CRUDFeatureWithId[Long, Entity] {
  override def rawValueToId(value: Any): Long = value.toString.toLong

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy