!455 更新kt文档更多使用的文档链接

Merge pull request !455 from 卡莫sama/main
This commit is contained in:
王帅 2024-05-14 06:01:23 +00:00 committed by Gitee
commit 2441da3c70
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -51,7 +51,10 @@
// 无需注册Mapper与APT/KSP即可查询操作
val accountList: List<Account> = query {
select(Account::id, Account::userName)
where(Account::age.isNotNull) and { Account::age ge 17 } orderBy -Account::id
whereWith {
Account::age.isNotNull and (Account::age ge 17)
}
orderBy(-Account::id)
}
```
执行的SQL:
@ -102,3 +105,10 @@
点击链接进入详情:
- https://github.com/KAMO030/MyBatis-Flex-Kotlin#快速开始
- https://gitee.com/mybatis-flex/mybatis-flex-kotlin#快速开始
## 更多使用
- 功能 1[Bootstrap简化配置](https://gitee.com/mybatis-flex/mybatis-flex-kotlin/blob/main/docs/bootstrapExt.md)
- 功能 2[简单查询与扩展](https://gitee.com/mybatis-flex/mybatis-flex-kotlin/blob/main/docs/extensions.md)
- 功能 3[向量查询](https://gitee.com/mybatis-flex/mybatis-flex-kotlin/blob/main/docs/vec.md) (实验性)
- 功能 4[KSP](https://gitee.com/mybatis-flex/mybatis-flex-kotlin/blob/main/docs/ksp.md)