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: doc/doc/requery/requery.md
+19-4Lines changed: 19 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,9 +111,24 @@ public class PersonDAO {
111
111
112
112
Please note we don't inject a `raw` `EntityStore`. Instead we ask for a `Person` `EntityStore`. You can safely inject a `EntityStore` per each of your domain objects.
113
113
114
-
## async and reactive idioms
114
+
## kotlin, async and reactive idioms
115
115
116
-
Rxjava:
116
+
### Kotlin
117
+
118
+
Add the [kotlin dependency](https://mvnrepository.com/artifact/io.requery/requery-kotlin) to your project, then use it:
119
+
120
+
```java
121
+
{
122
+
use(Requery.kotlin(Models.DEFAULT));
123
+
124
+
get("/", () -> {
125
+
KotlinEntityDataStore<Model> store = require(KotlinEntityDataStore.class);
0 commit comments