Uses of Class
org.litebridge.orm.api.dto.DtoJoinSpec
Packages that use DtoJoinSpec
Package
Description
Fluent API for constructing DTO-mapped SQL queries (SELECT statements)
Persistence subsystem; contains classes for saving/updating/deleting DTOs
-
Uses of DtoJoinSpec in org.litebridge.orm.api.dto
Methods in org.litebridge.orm.api.dto that return DtoJoinSpecModifier and TypeMethodDescriptionDtoSelectSpec.newJoinSpec(Class<?> dtoClass, OrmTable ormTable, Table table) Creates a new join specification.DtoSelectSpec.newJoinSpecBefore(DtoJoinSpec other, Class<?> dtoClass, OrmTable ormTable, Table table) Creates a new join specification before another join specification.Methods in org.litebridge.orm.api.dto with parameters of type DtoJoinSpecModifier and TypeMethodDescriptionDtoSelectSpec.newJoinSpecBefore(DtoJoinSpec other, Class<?> dtoClass, OrmTable ormTable, Table table) Creates a new join specification before another join specification.Constructors in org.litebridge.orm.api.dto with parameters of type DtoJoinSpecModifierConstructorDescriptionDtoJoinConditionClauseTerminal(DtoJoinSpec joinSpec, DtoSelector<DTO> delegate, AliasGenerator aliasGenerator) Creates a new instance ofDtoJoinConditionClauseTerminal. -
Uses of DtoJoinSpec in org.litebridge.orm.persistence
Methods in org.litebridge.orm.persistence with parameters of type DtoJoinSpecModifier and TypeMethodDescriptionvoidDtoBlueprint.addJoinedDtoData(DtoJoinSpec dtoJoinSpec, List<Object> primaryKey, Row dtoRow) Adds joined DTO data to this blueprint.Constructors in org.litebridge.orm.persistence with parameters of type DtoJoinSpecModifierConstructorDescriptionJoinDtoData(DtoJoinSpec dtoJoinSpec, List<Object> primaryKey, Row dtoRows) Creates a new join DTO data instance.