kotlin-mpp-playground
Toggle table of contents
0.1.0.0+0152ff2
jvm
Platform filter
jvm
Switch theme
Search in API
kotlin-mpp-playground
jvm
/
dev.suresh.db
Package-level
declarations
Types
Functions
Properties
Types
Address
Link copied to clipboard
data
class
Address
(
val
id
:
Long
,
val
street
:
String
,
val
city
:
String
,
val
state
:
String
?
,
val
zipCode
:
String
?
,
val
country
:
String
)
Common
Type
Link copied to clipboard
data
class
CommonType
(
val
id
:
Long
,
val
name
:
String
)
Email
Link copied to clipboard
@
JvmInline
value
class
Email
(
val
value
:
String
)
People
Link copied to clipboard
data
class
People
(
val
id
:
Long
,
val
name
:
String
,
val
email
:
Email
?
,
val
age
:
Int
,
val
addressId
:
Long
?
)
Robot
Link copied to clipboard
data
class
Robot
(
val
id
:
Long
,
val
name
:
String
)
sql
Link copied to clipboard
typealias
sql
=
capture
Properties
address
Link copied to clipboard
val
address
:
SqlQuery
<
Address
>
aggregators
Link copied to clipboard
val
aggregators
:
SqlQuery
<
Pair
<
Int
,
Double
>
>
common
Type
Link copied to clipboard
val
commonType
:
SqlQuery
<
CommonType
>
distinct
Link copied to clipboard
val
distinct
:
SqlQuery
<
Pair
<
String
,
Int
>
>
filter
Link copied to clipboard
val
filter
:
SqlQuery
<
People
>
limit
And
Offest
Link copied to clipboard
val
limitAndOffest
:
SqlQuery
<
People
>
map
Link copied to clipboard
val
map
:
SqlQuery
<
Pair
<
String
,
Int
>
>
people
Link copied to clipboard
val
people
:
SqlQuery
<
People
>
p
Query
Link copied to clipboard
val
pQuery
:
SqlQuery
<
People
>
robot
Link copied to clipboard
val
robot
:
SqlQuery
<
Robot
>
sub
Queries
Link copied to clipboard
val
subQueries
:
SqlQuery
<
People
>
union
Link copied to clipboard
val
union
:
SqlQuery
<
People
>
Functions
batch
Link copied to clipboard
fun
batch
(
p
:
Sequence
<
People
>
)
delete
Link copied to clipboard
fun
delete
(
p
:
People
)
insert
Link copied to clipboard
fun
insert
(
p
:
People
)
like
Link copied to clipboard
fun
String
.
like
(
value
:
String
)
:
SqlExpression
<
Boolean
>
select
Link copied to clipboard
fun
select
(
)
update
Link copied to clipboard
fun
update
(
p
:
People
)
upsert
Link copied to clipboard
fun
upsert
(
p
:
People
)