@@ -24,7 +24,7 @@ Introduction
24
24
============
25
25
26
26
`Jinq `_ and `jOOQ `_ are in a similar area like `LINQ `_. We've picked up and
27
- summarized some bits from blog posts and interviews by Dr. Ming-Yee Iu and
27
+ summarized a few quotes from blog posts and interviews by Dr. Ming-Yee Iu and
28
28
Lukas Eder, the main authors of Jinq and jOOQ.
29
29
30
30
Firstly, you may enjoy the guest post by Dr. Ming-Yee Iu `Java 8 Will
@@ -45,6 +45,23 @@ Querying`_ at the `jOOQ Tuesdays series`_.
45
45
instead, which provide most of the benefits of LINQ but don’t require tight
46
46
language integration like LINQ.
47
47
48
+ Details
49
+ =======
50
+
51
+ From the documentation at http://www.jinq.org/, about what Jinq actually is,
52
+ and does.
53
+
54
+ Jinq provides developers an easy and natural way to write database queries
55
+ in Java. You can treat database data like normal Java objects stored in
56
+ collections. You can iterate over them and filter them using normal Java
57
+ commands, and all your code will be automatically translated into optimized
58
+ database queries. Finally, LINQ-style queries are available for Java!
59
+
60
+ With Jinq, you can write database queries using a simple, natural Java
61
+ syntax. Using Java 8's new support for functional programming, you can
62
+ filter and transform data in a database using the same code you would use
63
+ for normal Java data.
64
+
48
65
49
66
********
50
67
Synopsis
@@ -66,24 +83,6 @@ A few other concise `Jinq code examples`_ can be discovered at the Jinq code
66
83
base.
67
84
68
85
69
- *******
70
- Details
71
- *******
72
-
73
- From the documentation at http://www.jinq.org/, about what Jinq actually is,
74
- and does.
75
-
76
- Jinq provides developers an easy and natural way to write database queries
77
- in Java. You can treat database data like normal Java objects stored in
78
- collections. You can iterate over them and filter them using normal Java
79
- commands, and all your code will be automatically translated into optimized
80
- database queries. Finally, LINQ-style queries are available for Java!
81
-
82
- With Jinq, you can write database queries using a simple, natural Java
83
- syntax. Using Java 8's new support for functional programming, you can
84
- filter and transform data in a database using the same code you would use
85
- for normal Java data.
86
-
87
86
88
87
.. _CrateDB : https://github.com/crate/crate
89
88
.. _Jinq code examples : https://github.com/my2iu/Jinq/blob/main/sample/src/com/example/jinq/sample/SampleMain.java
0 commit comments