basic-http
Toggle table of contents
2.0
jvm
Platform filter
jvm
Switch theme
Search in API
basic-http
basic-http
/
database.interfaces
/
IBasicOrm
IBasic
Orm
interface
IBasicOrm
<
T
:
Any
>
Interface for basic ORM operations.
Parameters
T
The type of the entity.
Members
Functions
close
Connection
Link copied to clipboard
abstract
fun
closeConnection
(
)
delete
One
Link copied to clipboard
abstract
fun
deleteOne
(
entity
:
T
)
find
All
Link copied to clipboard
abstract
fun
findAll
(
)
:
MutableList
<
T
>
find
One
Link copied to clipboard
abstract
fun
findOne
(
id
:
Any
)
:
T
?
insert
Link copied to clipboard
abstract
fun
insert
(
entity
:
T
)
update
One
Link copied to clipboard
abstract
fun
updateOne
(
entity
:
T
)