SQLlin
SQLlin copied to clipboard
A DSL ORM library for Kotlin Multiplatform.
example: ```kotlin @DBRow(tableName = "memo") @Serializable data class Memo( val id: Long, val createdTs: Long, val creatorId: Long, var content: String, @DbIgnore //ignore the colume val resourceList: MutableList = mutableListOf()...
Is WASM as target platform on the roadmap? WASM along with OPFS using [sqlite-wasm](https://github.com/tomayac/sqlite-wasm) library should make it quite usable.
不支持的类型
生成的表中没有枚举,类型别名,以及带有Serializable的对象。没有忽略 @kotlinx.serialization.Transient 的对象