skinny

orm

package orm

Skinny provides you Skinny-ORM as the default O/R mapper, which is built with ScalikeJDBC.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. orm
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type Alias[A] = scalikejdbc.SQLInterpolation.QuerySQLSyntaxProvider[scalikejdbc.SQLInterpolation.SQLSyntaxSupport[A], A]

  2. trait SkinnyCRUDMapper[Entity] extends SkinnyMapper[Entity] with CRUDFeatureWithId[Long, Entity]

    Out-of-the-box Skinny-ORM CRUD mapper.

  3. trait SkinnyCRUDMapperWithId[Id, Entity] extends SkinnyMapperWithId[Id, Entity] with CRUDFeatureWithId[Id, Entity]

    Out-of-the-box Skinny-ORM CRUD mapper.

  4. trait SkinnyJoinTable[Entity] extends SkinnyJoinTableWithId[Long, Entity]

    SkinnyMapper which represents join table which is used for associations.

  5. trait SkinnyJoinTableWithId[Id, Entity] extends SkinnyMapperWithId[Id, Entity] with QueryingFeatureWithId[Id, Entity]

  6. trait SkinnyMapper[Entity] extends SkinnyMapperWithId[Long, Entity]

    Basic SkinnyMapper implementation.

  7. trait SkinnyMapperBase[Entity] extends scalikejdbc.SQLInterpolation.SQLSyntaxSupport[Entity]

    SkinnyMapper base.

  8. trait SkinnyMapperWithId[Id, Entity] extends SkinnyMapperBase[Entity] with ConnectionPoolFeature with AutoSessionFeature with AssociationsFeature[Entity] with IdFeature[Id] with DynamicTableNameFeatureWithId[Id, Entity] with StrongParametersFeature

  9. trait SkinnyRecord[Entity] extends SkinnyRecordWithId[Long, Entity]

    ActiveRecord::Base-like entity object base.

  10. trait SkinnyRecordBase[Entity] extends SkinnyRecordBaseWithId[Long, Entity]

    ActiveRecord::Base-like entity object base.

  11. trait SkinnyRecordBaseWithId[Id, Entity] extends AnyRef

  12. trait SkinnyRecordWithId[Id, Entity] extends SkinnyRecordBaseWithId[Id, Entity]

  13. trait SkinnyTable[Entity] extends SkinnyMapperBase[Entity] with ConnectionPoolFeature with AutoSessionFeature with AssociationsFeature[Entity] with QueryingFeature[Entity] with StrongParametersFeature

    Table definition without single primary key specified by default.

Value Members

  1. package exception

  2. package feature

  3. package servlet

Inherited from AnyRef

Inherited from Any

Ungrouped