skinny.orm.feature

CRUDFeatureWithId

trait CRUDFeatureWithId[Id, Entity] extends SkinnyMapperBase[Entity] with SkinnyModel[Id, Entity] with ConnectionPoolFeature with AutoSessionFeature with AssociationsWithIdFeature[Id, Entity] with JoinsFeature[Entity] with IdFeature[Id] with NoIdCUDFeature[Entity] with IncludesFeatureWithId[Id, Entity] with QueryingFeatureWithId[Id, Entity] with FinderFeatureWithId[Id, Entity] with DynamicTableNameFeatureWithId[Id, Entity] with StrongParametersFeature

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. CRUDFeatureWithId
  2. DynamicTableNameFeatureWithId
  3. FinderFeatureWithId
  4. NoIdFinderFeature
  5. CalculationFeature
  6. QueryingFeatureWithId
  7. IncludesFeatureWithId
  8. NoIdCUDFeature
  9. StrongParametersFeature
  10. JoinsFeature
  11. AssociationsWithIdFeature
  12. IdFeature
  13. AssociationsFeature
  14. Logging
  15. AutoSessionFeature
  16. ConnectionPoolFeature
  17. SkinnyModel
  18. SkinnyMapperBase
  19. SQLSyntaxSupport
  20. AnyRef
  21. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. type AfterCreateHandler = (DBSession, Seq[(scalikejdbc.SQLSyntax, Any)], Option[Id]) ⇒ Unit

    #updateBy post-execution handler.

  2. type AfterDeleteByHandler = (DBSession, scalikejdbc.SQLSyntax, Int) ⇒ Unit

    #updateBy post-execution handler.

    #updateBy post-execution handler.

    Definition Classes
    NoIdCUDFeature
  3. type AfterUpdateByHandler = (DBSession, scalikejdbc.SQLSyntax, Seq[(scalikejdbc.SQLSyntax, Any)], Int) ⇒ Unit

    #updateBy post-execution handler.

    #updateBy post-execution handler.

    Definition Classes
    NoIdCUDFeature
  4. type BeforeCreateHandler = (DBSession, Seq[(scalikejdbc.SQLSyntax, Any)]) ⇒ Unit

    #updateBy pre-execution handler.

  5. type BeforeDeleteByHandler = (DBSession, scalikejdbc.SQLSyntax) ⇒ Unit

    #updateBy pre-execution handler.

    #updateBy pre-execution handler.

    Definition Classes
    NoIdCUDFeature
  6. type BeforeUpdateByHandler = (DBSession, scalikejdbc.SQLSyntax, Seq[(scalikejdbc.SQLSyntax, Any)]) ⇒ Unit

    #updateBy pre-execution handler.

    #updateBy pre-execution handler.

    Definition Classes
    NoIdCUDFeature
  7. case class EntitiesSelectOperationBuilder(mapper: QueryingFeatureWithId[Id, Entity], conditions: Seq[scalikejdbc.SQLSyntax] = immutable.this.Nil, orderings: Seq[scalikejdbc.SQLSyntax] = immutable.this.Nil, limit: Option[Int] = scala.None, offset: Option[Int] = scala.None) extends SelectOperationBuilder with Product with Serializable

    Entities finder builder.

  8. abstract class SelectOperationBuilder extends AnyRef

    Select query builder.

  9. class UpdateOperationBuilder extends AnyRef

    Update query builder/executor.

Abstract Value Members

  1. abstract def defaultAlias: Alias[Entity]

    Returns default table alias.

    Returns default table alias. This method is abstract and should be implemented with unique name. override def defaultAlias = createAlias("sm")

    Definition Classes
    SkinnyMapperBase
  2. abstract def extract(rs: WrappedResultSet, n: scalikejdbc.ResultName[Entity]): Entity

    Extracts entity from ResultSet.

    Extracts entity from ResultSet.

    Definition Classes
    SkinnyMapperBase
  3. abstract def idToRawValue(id: Id): Any

    Returns actual value from identity value.

    Returns actual value from identity value.

    id

    identity

    returns

    actual value

    Definition Classes
    IdFeature
  4. abstract def rawValueToId(rawValue: Any): Id

    Returns identity value from raw value.

    Returns identity value from raw value.

    rawValue

    raw value

    returns

    identity value

    Definition Classes
    IdFeature

Concrete Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addAttributeForCreation(namedValue: ⇒ (scalikejdbc.SQLSyntax, Any)): NoIdCUDFeature[Entity]

    Adds new attribute to be inserted when creation.

    Adds new attribute to be inserted when creation.

    namedValue

    named value

    returns

    self

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  7. def afterCreate(handler: (DBSession, Seq[(scalikejdbc.SQLSyntax, Any)], Option[Id]) ⇒ Unit): Unit

    #createWithNamedValues post-execution.

    #createWithNamedValues post-execution.

    handler

    handler

  8. val afterCreateHandlers: ListBuffer[(DBSession, Seq[(scalikejdbc.SQLSyntax, Any)], Option[Id]) ⇒ Unit]

    Registered afterUpdateByHandlers.

    Registered afterUpdateByHandlers.

    Attributes
    protected
  9. def afterDeleteBy(handler: (DBSession, scalikejdbc.SQLSyntax, Int) ⇒ Unit): Unit

    #deleteBy post-execution.

    #deleteBy post-execution.

    handler

    handler

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  10. val afterDeleteByHandlers: ListBuffer[(DBSession, scalikejdbc.SQLSyntax, Int) ⇒ Unit]

    Registered afterUpdateByHandlers.

    Registered afterUpdateByHandlers.

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  11. def afterUpdateBy(handler: (DBSession, scalikejdbc.SQLSyntax, Seq[(scalikejdbc.SQLSyntax, Any)], Int) ⇒ Unit): Unit

    Registers #updateBy post-execution handler.

    Registers #updateBy post-execution handler.

    handler

    event handler

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  12. val afterUpdateByHandlers: ListBuffer[(DBSession, scalikejdbc.SQLSyntax, Seq[(scalikejdbc.SQLSyntax, Any)], Int) ⇒ Unit]

    Registered afterUpdateByHandlers.

    Registered afterUpdateByHandlers.

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  13. def appendIncludedAttributes(entity: Option[Entity])(implicit s: DBSession, repository: IncludesQueryRepository[Entity]): Option[Entity]

    Applies includes operations to query result.

    Applies includes operations to query result.

    entity

    entity

    s

    session

    repository

    repository

    returns

    entity with included attributes

    Definition Classes
    IncludesFeatureWithId
  14. def appendIncludedAttributes(entities: List[Entity])(implicit s: DBSession, repository: IncludesQueryRepository[Entity]): List[Entity]

    Applies includes operations to query results.

    Applies includes operations to query results.

    entities

    entities

    s

    session

    repository

    repository

    returns

    entities with included attributes

    Definition Classes
    IncludesFeatureWithId
  15. def apply(rs: WrappedResultSet): Entity

    Extracts entity from ResultSet.

    Extracts entity from ResultSet.

    Definition Classes
    SkinnyMapperBase
  16. def apply(a: Alias[Entity])(rs: WrappedResultSet): Entity

    Extracts entity from ResultSet.

    Extracts entity from ResultSet.

    Definition Classes
    SkinnyMapperBase
  17. def as(provider: scalikejdbc.QuerySQLSyntaxProvider[scalikejdbc.SQLSyntaxSupport[Entity], Entity]): scalikejdbc.TableAsAliasSQLSyntax

    Definition Classes
    SQLSyntaxSupport
  18. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  19. val associations: LinkedHashSet[Association[_]]

    Associations

    Associations

    Definition Classes
    AssociationsFeature
  20. def autoSession: DBSession

    AutoSession definition.

    AutoSession definition.

    Definition Classes
    AutoSessionFeature
  21. def average(fieldName: Symbol, decimals: Option[Int] = None)(implicit s: DBSession = autoSession): BigDecimal

    Calculates average of a column.

    Calculates average of a column.

    Definition Classes
    CalculationFeature
  22. def avg(fieldName: Symbol, decimals: Option[Int] = None)(implicit s: DBSession = autoSession): BigDecimal

    Definition Classes
    CalculationFeature
  23. def beforeCreate(handler: (DBSession, Seq[(scalikejdbc.SQLSyntax, Any)]) ⇒ Unit): Unit

    #createWithNamedValues pre-execution.

    #createWithNamedValues pre-execution.

    handler

    handler

  24. val beforeCreateHandlers: ListBuffer[(DBSession, Seq[(scalikejdbc.SQLSyntax, Any)]) ⇒ Unit]

    Registered beforeUpdateByHandlers.

    Registered beforeUpdateByHandlers.

    Attributes
    protected
  25. def beforeDeleteBy(handler: (DBSession, scalikejdbc.SQLSyntax) ⇒ Unit): Unit

    #deleteBy pre-execution.

    #deleteBy pre-execution.

    handler

    handler

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  26. val beforeDeleteByHandlers: ListBuffer[(DBSession, scalikejdbc.SQLSyntax) ⇒ Unit]

    Registered beforeUpdateByHandlers.

    Registered beforeUpdateByHandlers.

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  27. def beforeUpdateBy(handler: (DBSession, scalikejdbc.SQLSyntax, Seq[(scalikejdbc.SQLSyntax, Any)]) ⇒ Unit): Unit

    Registers #updateBy pre-execution handler.

    Registers #updateBy pre-execution handler.

    handler

    event handler

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  28. val beforeUpdateByHandlers: ListBuffer[(DBSession, scalikejdbc.SQLSyntax, Seq[(scalikejdbc.SQLSyntax, Any)]) ⇒ Unit]

    Registered beforeUpdateByHandlers.

    Registered beforeUpdateByHandlers.

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  29. def belongsTo[A](right: AssociationsWithIdFeature[_, A], merge: (Entity, Option[A]) ⇒ Entity): BelongsToAssociation[Entity]

    Definition Classes
    AssociationsFeature
  30. def belongsToWithAlias[A](right: (AssociationsWithIdFeature[_, A], Alias[A]), merge: (Entity, Option[A]) ⇒ Entity): BelongsToAssociation[Entity]

    Definition Classes
    AssociationsFeature
  31. def belongsToWithAliasAndFk[A](right: (AssociationsWithIdFeature[_, A], Alias[A]), fk: String, merge: (Entity, Option[A]) ⇒ Entity): BelongsToAssociation[Entity]

    Definition Classes
    AssociationsFeature
  32. def belongsToWithAliasAndFkAndJoinCondition[A](right: (AssociationsFeature[A], Alias[A]), fk: String, on: scalikejdbc.SQLSyntax, merge: (Entity, Option[A]) ⇒ Entity): BelongsToAssociation[Entity]

    Definition Classes
    AssociationsFeature
  33. def belongsToWithFk[A](right: AssociationsWithIdFeature[_, A], fk: String, merge: (Entity, Option[A]) ⇒ Entity): BelongsToAssociation[Entity]

    Definition Classes
    AssociationsFeature
  34. def belongsToWithFkAndJoinCondition[A](right: AssociationsFeature[A], fk: String, on: scalikejdbc.SQLSyntax, merge: (Entity, Option[A]) ⇒ Entity): BelongsToAssociation[Entity]

    Definition Classes
    AssociationsFeature
  35. def belongsToWithJoinCondition[A](right: AssociationsWithIdFeature[_, A], on: scalikejdbc.SQLSyntax, merge: (Entity, Option[A]) ⇒ Entity): BelongsToAssociation[Entity]

    Definition Classes
    AssociationsFeature
  36. def byId(id: Id): scalikejdbc.SQLSyntax

    Returns a query part which represents primary key search condition.

    Returns a query part which represents primary key search condition.

    id

    primary key

    returns

    query part

    Attributes
    protected
  37. def calculate(sql: scalikejdbc.SQLSyntax)(implicit s: DBSession = autoSession): BigDecimal

    Calculates rows.

    Calculates rows.

    Definition Classes
    CalculationFeature
  38. def clearLoadedColumns(): Unit

    Definition Classes
    SQLSyntaxSupport
  39. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. def column: scalikejdbc.ColumnName[Entity]

    Definition Classes
    SQLSyntaxSupport
  41. def columnNames: Seq[String]

    Returns column names.

    Returns column names.

    Definition Classes
    SkinnyMapperBase → SQLSyntaxSupport
  42. def columns: Seq[String]

    Definition Classes
    SQLSyntaxSupport
  43. def connectionPool: ConnectionPool

    Returns connection pool.

    Returns connection pool.

    returns

    pool

    Definition Classes
    ConnectionPoolFeature
  44. def connectionPoolName: Any

    Definition Classes
    SQLSyntaxSupport
  45. def convertAutoGeneratedIdToId[A](id: Long): Option[Id]

    Returns actual value from identity value.

    Returns actual value from identity value.

    A

    actual value type

    id

    identity

    returns

    actual value

    Definition Classes
    IdFeature
  46. def count(fieldName: Symbol = Symbol(""), distinct: Boolean = false)(implicit s: DBSession = autoSession): Long

    Count only.

    Count only.

    Definition Classes
    CalculationFeature
  47. def countAllModels(): Long

    Definition Classes
    CRUDFeatureWithId → SkinnyModel
  48. def countBy(where: scalikejdbc.SQLSyntax)(implicit s: DBSession = autoSession): Long

    Counts all rows by condition.

    Counts all rows by condition.

    Definition Classes
    NoIdFinderFeature
  49. def createAlias(name: String): Alias[Entity]

    Creates a new table alias for this mapper.

    Creates a new table alias for this mapper.

    Definition Classes
    SkinnyMapperBase
  50. def createJoinDefinition(joinType: JoinType, left: (AssociationsFeature[_], Alias[_]), right: (AssociationsFeature[_], Alias[_]), on: scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Creates a new join definition.

    Creates a new join definition.

    joinType

    join type

    left

    left mapper and table alias

    right

    right mapper and table alias

    on

    join condition

    returns

    join definition

    Definition Classes
    AssociationsFeature
  51. def createNewModel(parameters: PermittedStrongParameters): Id

    Definition Classes
    CRUDFeatureWithId → SkinnyModel
  52. def createWithAttributes(parameters: (Symbol, Any)*)(implicit s: DBSession): Id

    Creates a new entity with non-permitted parameters.

    Creates a new entity with non-permitted parameters.

    CAUTION: If you use this method in some web apps, you might have mass assignment vulnerability.

    parameters

    parameters

    s

    db session

    returns

    created count

    Definition Classes
    CRUDFeatureWithIdNoIdCUDFeature
  53. def createWithNamedValues(namedValues: (scalikejdbc.SQLSyntax, Any)*)(implicit s: DBSession = autoSession): Id

    Creates a new entity with named values.

    Creates a new entity with named values.

    namedValues

    named values

    s

    db session

    returns

    created count

    Definition Classes
    CRUDFeatureWithIdNoIdCUDFeature
  54. def createWithPermittedAttributes(strongParameters: PermittedStrongParameters)(implicit s: DBSession): Id

    Creates a new entity with permitted strong parameters.

    Creates a new entity with permitted strong parameters.

    strongParameters

    permitted parameters

    s

    db session

    returns

    created count

    Definition Classes
    CRUDFeatureWithIdNoIdCUDFeature
  55. def debug(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  56. def debug(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  57. val defaultBelongsToExtractors: LinkedHashSet[BelongsToExtractor[Entity]]

    Definition Classes
    AssociationsFeature
  58. val defaultHasOneExtractors: LinkedHashSet[HasOneExtractor[Entity]]

    Definition Classes
    AssociationsFeature
  59. val defaultJoinDefinitions: LinkedHashSet[JoinDefinition[_]]

    Join definitions that are enabled by default.

    Join definitions that are enabled by default.

    Definition Classes
    AssociationsFeature
  60. val defaultOneToManyExtractors: LinkedHashSet[HasManyExtractor[Entity]]

    Definition Classes
    AssociationsFeature
  61. def defaultOrdering: scalikejdbc.SQLSyntax

    Default ordering condition.

    Default ordering condition.

    Definition Classes
    FinderFeatureWithIdNoIdFinderFeature
  62. def defaultOrderings: Seq[scalikejdbc.SQLSyntax]

    Definition Classes
    NoIdFinderFeature
  63. def defaultScope(alias: Alias[Entity]): Option[scalikejdbc.SQLSyntax]

    Returns default scope for select queries.

    Returns default scope for select queries.

    Definition Classes
    SkinnyMapperBase
  64. def defaultScopeForUpdateOperations: Option[scalikejdbc.SQLSyntax]

    Returns default scope for update/delete operations.

    Returns default scope for update/delete operations.

    returns

    default scope

    Definition Classes
    NoIdCUDFeature
  65. def defaultScopeWithDefaultAlias: Option[scalikejdbc.SQLSyntax]

    Definition Classes
    SkinnyMapperBase
  66. def defaultSelectQuery: scalikejdbc.SelectSQLBuilder[Entity]

    Returns th default select query builder for this mapper.

    Returns th default select query builder for this mapper.

    returns

    select query builder

    Definition Classes
    AssociationsFeatureSkinnyMapperBase
  67. def deleteAll()(implicit s: DBSession = autoSession): Int

    Deletes all entities.

    Deletes all entities.

    Definition Classes
    NoIdCUDFeature
  68. def deleteBy(where: scalikejdbc.SQLSyntax)(implicit s: DBSession = autoSession): Int

    Deletes entities by condition.

    Deletes entities by condition.

    where

    condition

    s

    db session

    returns

    deleted count

    Definition Classes
    NoIdCUDFeature
  69. def deleteById(id: Id)(implicit s: DBSession = autoSession): Int

    Deletes a single entity by primary key.

    Deletes a single entity by primary key.

    id

    primary key

    s

    db session

    returns

    deleted count

  70. def deleteModelById(id: Id): Int

    Definition Classes
    CRUDFeatureWithId → SkinnyModel
  71. def delimiterForResultName: String

    Definition Classes
    SQLSyntaxSupport
  72. def distinctCount(fieldName: Symbol = Symbol(primaryKeyFieldName))(implicit s: DBSession = autoSession): Long

    Counts distinct rows.

    Counts distinct rows.

    Definition Classes
    CalculationFeature
  73. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  74. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  75. def error(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  76. def error(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  77. def extract(sql: SQL[Entity, NoExtractor])(implicit includesRepository: IncludesQueryRepository[Entity]): SQL[Entity, HasExtractor]

    Definition Classes
    NoIdFinderFeatureAssociationsFeature
  78. def extractBelongsTo[That](mapper: AssociationsFeature[That], fk: String, alias: Alias[That], merge: (Entity, Option[That]) ⇒ Entity, includesMerge: (Seq[Entity], Seq[That]) ⇒ Seq[Entity] = defaultIncludesMerge[Entity, That]): BelongsToExtractor[Entity]

    Definition Classes
    AssociationsFeature
  79. def extractHasOne[That](mapper: AssociationsFeature[That], fk: String, alias: Alias[That], merge: (Entity, Option[That]) ⇒ Entity, includesMerge: (Seq[Entity], Seq[That]) ⇒ Seq[Entity] = defaultIncludesMerge[Entity, That]): HasOneExtractor[Entity]

    Definition Classes
    AssociationsFeature
  80. def extractOneToMany[M1](mapper: AssociationsFeature[M1], alias: Alias[M1], merge: (Entity, Seq[M1]) ⇒ Entity, includesMerge: (Seq[Entity], Seq[M1]) ⇒ Seq[Entity] = defaultIncludesMerge[Entity, M1]): HasManyExtractor[Entity]

    Definition Classes
    AssociationsFeature
  81. def extractOneToManyWithDefaults[M1](mapper: AssociationsFeature[M1], merge: (Entity, Seq[M1]) ⇒ Entity, includesMerge: (Seq[Entity], Seq[M1]) ⇒ Seq[Entity] = defaultIncludesMerge[Entity, M1]): HasManyExtractor[Entity]

    One-to-Many relationship definition.

    One-to-Many relationship definition.

    object Member extends RelationshipFeature[Member] {
    oneToMany[Group](
      mapper = Group,
      merge = (m, c) => m.copy(company = c)
    )
    }
    Definition Classes
    AssociationsFeature
  82. def extractWithAssociations(sql: SQL[Entity, NoExtractor], belongsToAssociations: Seq[BelongsToAssociation[Entity]], hasOneAssociations: Seq[HasOneAssociation[Entity]], oneToManyAssociations: Seq[HasManyAssociation[Entity]])(implicit includesRepository: IncludesQueryRepository[Entity] = IncludesQueryRepository[Entity]()): SQL[Entity, HasExtractor]

    Creates an extractor for this query.

    Creates an extractor for this query.

    sql

    sql object

    belongsToAssociations

    belongsTo associations

    hasOneAssociations

    hasOne associations

    oneToManyAssociations

    hasMany associations

    returns

    sql object

    Definition Classes
    AssociationsFeature
  83. def extractWithOneToOneTables(rs: WrappedResultSet, belongsToExtractors: Set[BelongsToExtractor[Entity]], hasOneExtractors: Set[HasOneExtractor[Entity]])(implicit includesRepository: IncludesQueryRepository[Entity]): Entity

    Extracts entity with one-to-one tables.

    Extracts entity with one-to-one tables.

    rs

    result set

    belongsToExtractors

    belongsTo extractors

    hasOneExtractors

    hasOne extractors

    returns

    entity

    Definition Classes
    AssociationsFeature
  84. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  85. def findAll(orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Finds all entities.

    Finds all entities.

    Definition Classes
    FinderFeatureWithIdNoIdFinderFeature
  86. def findAllBy(where: scalikejdbc.SQLSyntax, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Finds all entities by condition.

    Finds all entities by condition.

    Definition Classes
    FinderFeatureWithIdNoIdFinderFeature
  87. def findAllByIds(ids: Id*)(implicit s: DBSession = autoSession): List[Entity]

    Finds all entities by several primary keys.

    Finds all entities by several primary keys.

    Definition Classes
    FinderFeatureWithId
  88. def findAllByWithLimitOffset(where: scalikejdbc.SQLSyntax, limit: Int = 100, offset: Int = 0, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Finds all entities by condition and with pagination.

    Finds all entities by condition and with pagination.

    Definition Classes
    FinderFeatureWithIdNoIdFinderFeature
  89. def findAllByWithLimitOffsetForOneToManyRelations(where: scalikejdbc.SQLSyntax, limit: Int = 100, offset: Int = 0, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Definition Classes
    FinderFeatureWithId
  90. def findAllByWithPagination(where: scalikejdbc.SQLSyntax, pagination: Pagination, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Finds all entities by condition and with pagination.

    Finds all entities by condition and with pagination.

    Definition Classes
    NoIdFinderFeature
  91. def findAllModels(): List[Entity]

    Definition Classes
    CRUDFeatureWithId → SkinnyModel
  92. def findAllWithLimitOffset(limit: Int = 100, offset: Int = 0, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Finds all entities with pagination.

    Finds all entities with pagination.

    Definition Classes
    FinderFeatureWithIdNoIdFinderFeature
  93. def findAllWithLimitOffsetForOneToManyRelations(limit: Int = 100, offset: Int = 0, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Definition Classes
    FinderFeatureWithId
  94. def findAllWithPagination(pagination: Pagination, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Finds all entities with pagination.

    Finds all entities with pagination.

    Definition Classes
    FinderFeatureWithIdNoIdFinderFeature
  95. def findBy(where: scalikejdbc.SQLSyntax)(implicit s: DBSession = autoSession): Option[Entity]

    Finds an entity by condition.

    Finds an entity by condition.

    Definition Classes
    FinderFeatureWithIdNoIdFinderFeature
  96. def findById(id: Id)(implicit s: DBSession = autoSession): Option[Entity]

    Finds a single entity by primary key.

    Finds a single entity by primary key.

    Definition Classes
    FinderFeatureWithId
  97. def findModel(id: Id): Option[Entity]

    Definition Classes
    CRUDFeatureWithId → SkinnyModel
  98. def findModels(pageSize: Int, pageNo: Int): List[Entity]

    Definition Classes
    CRUDFeatureWithId → SkinnyModel
  99. def forceUpperCase: Boolean

    Definition Classes
    SQLSyntaxSupport
  100. def generateId: Id

    Generates auto-generated new Id.

    Generates auto-generated new Id.

    returns

    id

    Definition Classes
    IdFeature
  101. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  102. def getTypedValueFromStrongParameter(fieldName: String, value: Any, paramType: ParamType): Option[Any]

    Returns typed value from a strong parameter.

    Returns typed value from a strong parameter.

    fieldName

    field name

    value

    actual value

    paramType

    param type definition

    returns

    typed value if exists

    Attributes
    protected
    Definition Classes
    StrongParametersFeature
  103. def hasMany[M](many: (AssociationsWithIdFeature[_, M], Alias[M]), on: (Alias[Entity], Alias[M]) ⇒ scalikejdbc.SQLSyntax, merge: (Entity, Seq[M]) ⇒ Entity): HasManyAssociation[Entity]

    Definition Classes
    AssociationsFeature
  104. def hasManyThrough[M1, M2](through: (AssociationsFeature[M1], Alias[M1]), throughOn: (Alias[Entity], Alias[M1]) ⇒ scalikejdbc.SQLSyntax, many: (AssociationsWithIdFeature[_, M2], Alias[M2]), on: (Alias[M1], Alias[M2]) ⇒ scalikejdbc.SQLSyntax, merge: (Entity, Seq[M2]) ⇒ Entity): HasManyAssociation[Entity]

    Definition Classes
    AssociationsFeature
  105. def hasManyThrough[M2](through: AssociationsFeature[_], many: AssociationsWithIdFeature[_, M2], merge: (Entity, Seq[M2]) ⇒ Entity): HasManyAssociation[Entity]

    Definition Classes
    AssociationsFeature
  106. def hasManyThroughWithFk[M2](through: AssociationsFeature[_], many: AssociationsWithIdFeature[_, M2], throughFk: String, manyFk: String, merge: (Entity, Seq[M2]) ⇒ Entity): HasManyAssociation[Entity]

    Definition Classes
    AssociationsFeature
  107. def hasOne[A](right: AssociationsWithIdFeature[_, A], merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  108. def hasOneWithAlias[A](right: (AssociationsWithIdFeature[_, A], Alias[A]), merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  109. def hasOneWithAliasAndFk[A](right: (AssociationsWithIdFeature[_, A], Alias[A]), fk: String, merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  110. def hasOneWithAliasAndFkAndJoinCondition[A](right: (AssociationsFeature[A], Alias[A]), fk: String, on: scalikejdbc.SQLSyntax, merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  111. def hasOneWithAliasAndJoinCondition[A](right: (AssociationsWithIdFeature[_, A], Alias[A]), on: scalikejdbc.SQLSyntax, merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  112. def hasOneWithFk[A](right: AssociationsWithIdFeature[_, A], fk: String, merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  113. def hasOneWithFkAndJoinCondition[A](right: AssociationsFeature[A], fk: String, on: scalikejdbc.SQLSyntax, merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  114. def hasOneWithJoinCondition[A](right: AssociationsWithIdFeature[_, A], on: scalikejdbc.SQLSyntax, merge: (Entity, Option[A]) ⇒ Entity): HasOneAssociation[Entity]

    Definition Classes
    AssociationsFeature
  115. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  116. def includes(associations: Association[_]*): IncludesFeatureWithId[Id, Entity] with FinderFeatureWithId[Id, Entity] with QueryingFeatureWithId[Id, Entity]

    Adds includes conditions.

    Adds includes conditions.

    associations

    associations

    returns

    extended self

    Definition Classes
    IncludesFeatureWithId
  117. def info(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  118. def info(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  119. def innerJoin[Left](left: (AssociationsFeature[Left], Alias[Left]), right: (AssociationsFeature[_], Alias[_]), on: (Alias[Left], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  120. def innerJoin(right: (AssociationsFeature[_], Alias[_]), on: (Alias[Entity], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  121. def innerJoinWithDefaults[Left](left: AssociationsFeature[Left], right: AssociationsFeature[_], on: (Alias[Left], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  122. def innerJoinWithDefaults(right: AssociationsFeature[_], on: (Alias[Entity], Alias[Any]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  123. def innerJoinWithDefaults(right: AssociationsFeature[_], on: scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  124. def isDebugEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  125. def isErrorEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  126. def isInfoEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  127. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  128. def isTraceEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  129. def isValidFieldName(name: String): Boolean

    Predicates the field name is valid.

    Predicates the field name is valid.

    Definition Classes
    SkinnyMapperBase
  130. def isWarnEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  131. def join[Left](left: (AssociationsFeature[Left], Alias[Left]), right: (AssociationsFeature[_], Alias[_]), on: (Alias[Left], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  132. def join(right: (AssociationsFeature[_], Alias[_]), on: (Alias[Entity], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  133. def joinWithDefaults[Left](left: AssociationsFeature[Left], right: AssociationsFeature[_], on: (Alias[Left], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  134. def joinWithDefaults(right: AssociationsFeature[_], on: (Alias[Entity], Alias[Any]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  135. def joinWithDefaults(right: AssociationsFeature[_], on: scalikejdbc.SQLSyntax): JoinDefinition[Entity]

    Definition Classes
    AssociationsFeature
  136. def joins[Id](associations: Association[_]*): CRUDFeatureWithId[Id, Entity]

    Appends join definition on runtime.

    Appends join definition on runtime.

    associations

    associations

    returns

    self

    Definition Classes
    CRUDFeatureWithIdJoinsFeature
  137. def leftJoin(left: (AssociationsFeature[_], Alias[_]), right: (AssociationsFeature[_], Alias[_]), on: (Alias[_], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[_]

    Definition Classes
    AssociationsFeature
  138. def leftJoin(right: (AssociationsFeature[_], Alias[_]), on: (Alias[Entity], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[_]

    Definition Classes
    AssociationsFeature
  139. def leftJoinWithDefaults(left: AssociationsFeature[_], right: AssociationsFeature[_], on: (Alias[_], Alias[_]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[_]

    Definition Classes
    AssociationsFeature
  140. def leftJoinWithDefaults(right: AssociationsFeature[_], on: (Alias[Entity], Alias[Any]) ⇒ scalikejdbc.SQLSyntax): JoinDefinition[_]

    Definition Classes
    AssociationsFeature
  141. def leftJoinWithDefaults(right: AssociationsFeature[_], on: scalikejdbc.SQLSyntax): JoinDefinition[_]

    Definition Classes
    AssociationsFeature
  142. def limit(n: Int): EntitiesSelectOperationBuilder

    Appends limit part.

    Appends limit part.

    n

    value

    returns

    query builder

    Definition Classes
    QueryingFeatureWithId
  143. def logger: Logger

    Attributes
    protected
    Definition Classes
    Logging
  144. def loggerName: String

    Attributes
    protected
    Definition Classes
    Logging
  145. def max(fieldName: Symbol)(implicit s: DBSession = autoSession): BigDecimal

    Definition Classes
    CalculationFeature
  146. def maximum(fieldName: Symbol)(implicit s: DBSession = autoSession): BigDecimal

    Calculates minimum value of a column.

    Calculates minimum value of a column.

    Definition Classes
    CalculationFeature
  147. def mergeNamedValuesForCreation(namedValues: Seq[(scalikejdbc.SQLSyntax, Any)]): Seq[(scalikejdbc.SQLSyntax, Any)]

    Merges already registered attributes to be inserted and parameters.

    Merges already registered attributes to be inserted and parameters.

    namedValues

    named values

    returns

    merged attributes

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  148. def min(fieldName: Symbol)(implicit s: DBSession = autoSession): BigDecimal

    Definition Classes
    CalculationFeature
  149. def minimum(fieldName: Symbol)(implicit s: DBSession = autoSession): BigDecimal

    Calculates minimum value of a column.

    Calculates minimum value of a column.

    Definition Classes
    CalculationFeature
  150. def nameConverters: Map[String, String]

    Definition Classes
    SQLSyntaxSupport
  151. def namedValuesForCreation(strongParameters: PermittedStrongParameters): Seq[(scalikejdbc.SQLSyntax, Any)]

    Extracts named values from the permitted parameters.

    Extracts named values from the permitted parameters.

    strongParameters

    permitted parameters

    returns

    named values

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
  152. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  153. final def notify(): Unit

    Definition Classes
    AnyRef
  154. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  155. def offset(n: Int): EntitiesSelectOperationBuilder

    Appends offset part.

    Appends offset part.

    n

    value

    returns

    query builder

    Definition Classes
    QueryingFeatureWithId
  156. def paginate(pagination: Pagination): EntitiesSelectOperationBuilder

    Appends pagination settings as limit/offset.

    Appends pagination settings as limit/offset.

    pagination

    pagination

    returns

    query builder

    Definition Classes
    QueryingFeatureWithId
  157. def primaryKeyField: scalikejdbc.SQLSyntax

    Definition Classes
    SkinnyMapperBase
  158. def primaryKeyFieldName: String

    Returns primary key name.

    Returns primary key name. (default: "id") Notice: Not a column name but field name. For example, not "first_name" but "firstName"

    Definition Classes
    SkinnyMapperBase
  159. def schemaName: Option[String]

    Definition Classes
    SQLSyntaxSupport
  160. def selectQueryWithAdditionalAssociations(sql: scalikejdbc.SelectSQLBuilder[Entity], belongsToAssociations: Seq[BelongsToAssociation[Entity]], hasOneAssociations: Seq[HasOneAssociation[Entity]], hasManyAssociations: Seq[HasManyAssociation[Entity]]): scalikejdbc.SelectSQLBuilder[Entity]

    Returns a select query builder that all associations are joined.

    Returns a select query builder that all associations are joined.

    sql

    sql object

    belongsToAssociations

    belongsTo associations

    hasOneAssociations

    hasOne associations

    hasManyAssociations

    hasMany associations

    returns

    select query builder

    Definition Classes
    AssociationsFeature
  161. def selectQueryWithAssociations: scalikejdbc.SelectSQLBuilder[Entity]

  162. def setAsByDefault(extractor: HasManyExtractor[Entity]): Unit

    Definition Classes
    AssociationsFeature
  163. def setAsByDefault(extractor: HasOneExtractor[Entity]): Unit

    Definition Classes
    AssociationsFeature
  164. def setAsByDefault(extractor: BelongsToExtractor[Entity]): Unit

    Definition Classes
    AssociationsFeature
  165. def singleSelectQuery: scalikejdbc.SelectSQLBuilder[Entity]

    Returns select query builder object to simply fetch rows without other joined tables.

    Returns select query builder object to simply fetch rows without other joined tables.

    Definition Classes
    SkinnyMapperBase
  166. def sum(fieldName: Symbol)(implicit s: DBSession = autoSession): BigDecimal

    Calculates sum of a column.

    Calculates sum of a column.

    Definition Classes
    CalculationFeature
  167. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  168. def syntax(name: String): scalikejdbc.QuerySQLSyntaxProvider[scalikejdbc.SQLSyntaxSupport[Entity], Entity]

    Definition Classes
    SQLSyntaxSupport
  169. def syntax: scalikejdbc.QuerySQLSyntaxProvider[scalikejdbc.SQLSyntaxSupport[Entity], Entity]

    Definition Classes
    SQLSyntaxSupport
  170. def table: scalikejdbc.TableDefSQLSyntax

    Definition Classes
    SQLSyntaxSupport
  171. def tableName: String

    Returns table name.

    Returns table name.

    Definition Classes
    SkinnyMapperBase → SQLSyntaxSupport
  172. def tableNameWithSchema: String

    Definition Classes
    SQLSyntaxSupport
  173. def toDefaultForeignKeyName[A](mapper: AssociationsFeature[A]): String

    Expects mapper's name + primary key name by default.

    Expects mapper's name + primary key name by default.

    A

    enitty type

    mapper

    mapper

    returns

    fk name

    Attributes
    protected
    Definition Classes
    AssociationsFeature
  174. def toString(): String

    Definition Classes
    AnyRef → Any
  175. def trace(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  176. def trace(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  177. def underlying: SkinnyMapperBase[Entity]

    Attributes
    protected
    Definition Classes
    SkinnyMapperBase
  178. def updateBy(where: scalikejdbc.SQLSyntax): UpdateOperationBuilder

    Returns update query builder with condition.

    Returns update query builder with condition.

    where

    where condition

    returns

    update query builder

    Definition Classes
    NoIdCUDFeature
  179. def updateById(id: Id, parameters: PermittedStrongParameters): Int

    Updates entities with parameters.

    Updates entities with parameters.

    id

    primary key

    parameters

    parameters

    returns

    updated count

  180. def updateById(id: Id): UpdateOperationBuilder

    Returns update query builder with primary key.

    Returns update query builder with primary key.

    id

    primary key

    returns

    update query builder

  181. def updateModelById(id: Id, parameters: PermittedStrongParameters): Int

    Definition Classes
    CRUDFeatureWithId → SkinnyModel
  182. def useAutoIncrementPrimaryKey: Boolean

    Primary key should be Database's auto-increment value if true.

    Primary key should be Database's auto-increment value if true.

    Definition Classes
    IdFeature
  183. def useExternalIdGenerator: Boolean

    Primary key generation should be done by #generateNewId if true.

    Primary key generation should be done by #generateNewId if true.

    Definition Classes
    IdFeature
  184. def useShortenedResultName: Boolean

    Definition Classes
    SQLSyntaxSupport
  185. def useSnakeCaseColumnName: Boolean

    Definition Classes
    SQLSyntaxSupport
  186. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  187. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  188. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  189. def warn(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  190. def warn(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  191. def where(condition: scalikejdbc.SQLSyntax): EntitiesSelectOperationBuilder

    Appends a raw where condition.

    Appends a raw where condition.

    condition
    returns

    query builder

    Definition Classes
    QueryingFeatureWithId
  192. def where(conditions: (Symbol, Any)*): EntitiesSelectOperationBuilder

    Appends where conditions.

    Appends where conditions.

    conditions
    returns

    query builder

    Definition Classes
    QueryingFeatureWithId
  193. def withAlias[A](name: String)(op: (Alias[Entity]) ⇒ A): A

    Provides a code block with a table alias.

    Provides a code block with a table alias.

    Definition Classes
    SkinnyMapperBase
  194. def withAlias[A](op: (Alias[Entity]) ⇒ A): A

    Provides a code block with a table alias.

    Provides a code block with a table alias.

    Definition Classes
    SkinnyMapperBase
  195. def withColumns[A](op: (scalikejdbc.ColumnName[Entity]) ⇒ A): A

    Provides a code block with the column name provider.

    Provides a code block with the column name provider.

    Definition Classes
    SkinnyMapperBase
  196. def withTableName(tableName: String): CRUDFeatureWithId[Id, Entity]

    Replaces table name on runtime.

    Replaces table name on runtime.

    tableName

    table name

    returns

    self

    Definition Classes
    CRUDFeatureWithIdDynamicTableNameFeatureWithId

Deprecated Value Members

  1. def afterCreate(namedValues: Seq[(scalikejdbc.SQLSyntax, Any)], generatedId: Option[Id])(implicit s: DBSession = autoSession): Unit

    #createWithNamedValues post-execution.

    #createWithNamedValues post-execution.

    namedValues

    named values

    generatedId

    generated id

    Attributes
    protected
    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.12) Use afterCreate(handler) instead

  2. def afterDeleteBy(where: scalikejdbc.SQLSyntax, deletedCount: Int)(implicit s: DBSession = autoSession): Int

    #deleteBy post-execution.

    #deleteBy post-execution.

    where

    condition

    deletedCount

    deleted count

    returns

    count

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.12) Use afterDeleteBy(handler) instead

  3. def beforeCreate(namedValues: Seq[(scalikejdbc.SQLSyntax, Any)])(implicit s: DBSession = autoSession): Unit

    #createWithNamedValues pre-execution.

    #createWithNamedValues pre-execution.

    namedValues

    named values

    Attributes
    protected
    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.12) Use beforeCreate(handler) instead

  4. def beforeDeleteBy(where: scalikejdbc.SQLSyntax)(implicit s: DBSession = autoSession): Unit

    #deleteBy pre-execution.

    #deleteBy pre-execution.

    where

    condition

    Attributes
    protected
    Definition Classes
    NoIdCUDFeature
    Annotations
    @deprecated
    Deprecated

    (Since version 1.3.12) Use beforeDeleteBy(handler) instead

  5. def findAllByPaging(where: scalikejdbc.SQLSyntax, limit: Int = 100, offset: Int = 0, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Definition Classes
    FinderFeatureWithId
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) Use #findAllByWithLimitOffset or #findAllByWithPagination instead. This method will be removed since version 1.1.0.

  6. def findAllPaging(limit: Int = 100, offset: Int = 0, orderings: Seq[scalikejdbc.SQLSyntax] = defaultOrderings)(implicit s: DBSession = autoSession): List[Entity]

    Definition Classes
    FinderFeatureWithId
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0.0) Use #findAllWithLimitOffset or #findAllWithPagination instead. This method will be removed since version 1.1.0.

Inherited from DynamicTableNameFeatureWithId[Id, Entity]

Inherited from FinderFeatureWithId[Id, Entity]

Inherited from NoIdFinderFeature[Entity]

Inherited from CalculationFeature[Entity]

Inherited from QueryingFeatureWithId[Id, Entity]

Inherited from IncludesFeatureWithId[Id, Entity]

Inherited from NoIdCUDFeature[Entity]

Inherited from StrongParametersFeature

Inherited from JoinsFeature[Entity]

Inherited from AssociationsWithIdFeature[Id, Entity]

Inherited from IdFeature[Id]

Inherited from AssociationsFeature[Entity]

Inherited from Logging

Inherited from AutoSessionFeature

Inherited from ConnectionPoolFeature

Inherited from SkinnyModel[Id, Entity]

Inherited from SkinnyMapperBase[Entity]

Inherited from scalikejdbc.SQLSyntaxSupport[Entity]

Inherited from AnyRef

Inherited from Any

Ungrouped