n

nalu

An ORM class library is used to create, read, update and delete single table data in the database. All these operations are completed by lambda. nalu translate lambda expressions into SQL statements, then execute queries, and then map data to entity objects, which is very different from traditional ORM such as mybatis.
https://github.com/eeroom/hw.core
The Apache Software License, Version 2.0
eeroom
文件下载
文件名 操作
nalu-2.4.jar 下载
nalu-2.4.pom 下载
nalu-2.4-sources.jar 下载
Apache Maven
<dependency>
  <groupId>io.github.eeroom</groupId>
  <artifactId>nalu</artifactId>
  <version>2.4</version>
</dependency>
Gradle Groovy
implementation 'io.github.eeroom:nalu:2.4'
Gradle Kotlin
implementation("io.github.eeroom:nalu:2.4")
Scala SBT
libraryDependencies += "io.github.eeroom" % "nalu" % "2.4"
Groovy Grape
@Grapes(
  @Grab(group='io.github.eeroom', module='nalu', version='2.4')
)
Apache Ivy
<dependency org="io.github.eeroom" name="nalu" rev="2.4" />
Leiningen
[io.github.eeroom/nalu "2.4"]
Apache Buildr
'io.github.eeroom:nalu:jar:2.4'