You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
中文版请见[这里](README_CN.md)
4
4
5
-
SQLlin is an ORM library for Kotlin Multiplatform that based on DSL and KSP. It uses SQLite under the hood. You can write SQL
5
+
SQLlin is an ORM library for Kotlin Multiplatform that is based on DSL and KSP. It uses SQLite under the hood. You can write SQL
6
6
statements with your Kotlin code and these can be verified by Kotlin compiler. Sample just like be this:
7
7
8
8
```kotlin
@@ -26,7 +26,7 @@ fun sample() {
26
26
}
27
27
```
28
28
SQLlin is able to insert Kotlin objects into database directly, and could query Kotlin objects from database directly. The serialization
29
-
and deserialization ability based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization).
29
+
and deserialization ability is based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization).
30
30
31
31
SQLlin supports these platforms:
32
32
@@ -45,7 +45,7 @@ The architecture design of SQLlin is shown in the figure:
45
45

46
46
47
47
SQLlin has 3 major parts: _sqllin-dsl_, _sqllin-driver_ and _sqllin-processor_. The _sqllin-driver_ is a set of common multiplatform SQLite low-level
48
-
APIs, most of the time it is not recommended to use it directly. The _sqllin-dsl_ is DSL implementations for SQL statements, it based on
48
+
APIs, most of the time it is not recommended to use it directly. The _sqllin-dsl_ is DSL implementations for SQL statements, it is based on
49
49
_sqllin-driver_. The _sqllin-processor_ uses KSP to process annotations and generate code for using with _sqllin-dsl_.
50
50
51
51
You can learn how to use _sqllin-dsl_ in these documentations:
@@ -63,7 +63,7 @@ I don't recommend using _sqllin-driver_ directly, but if you want to learn more
63
63
64
64
## R8/ProGuard
65
65
66
-
Due to _sqllin-dsl_'s deserialization based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization), the R8/ProGuard configuration please refer to
66
+
Due to _sqllin-dsl_'s serialization and deserialization are based on [kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization), the R8/ProGuard configuration please refer to
0 commit comments