Skip to content

Commit

Permalink
[wenhao] update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
wenhao committed Dec 21, 2018
1 parent ae4a318 commit 06c38a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public List<Person> findAll(SearchRequest request) {

Support any comparison class which implements Comparable interface, find any people age bigger than 18.

**Test:** [GtTest.java]
**Test:** [GreatThanTest.java]

```java
public List<Person> findAll(SearchRequest request) {
Expand Down Expand Up @@ -260,7 +260,7 @@ You can custom specification to do the @ManyToOne and @ManyToMany as well.

@ManyToOne association query, find person name equals to "Jack" and phone brand equals to "HuaWei".

**Test:** [AndTest.java]
**Test:** [PredicateTest.java]

```java
public List<Phone> findAll(SearchRequest request) {
Expand All @@ -278,7 +278,7 @@ public List<Phone> findAll(SearchRequest request) {

@ManyToMany association query, find person age between 10 and 35, live in "Chengdu" street.

**Test:** [AndTest.java]
**Test:** [PredicateTest.java]

```java
public List<Phone> findAll(SearchRequest request) {
Expand Down Expand Up @@ -403,13 +403,13 @@ Licensed under [Apache License]
[EqualTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/EqualTest.java
[NotEqualTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/NotEqualTest.java
[InTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/InTest.java
[GtTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/GtTest.java
[GreatThanTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/GreatThanTest.java
[BetweenTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/BetweenTest.java
[LikeTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/LikeTest.java
[NotLikeTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/NotLikeTest.java
[OrTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/OrTest.java
[AndOrTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/AndOrTest.java
[AndTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/AndTest.java
[PredicateTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/PredicateTest.java
[JoinTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/JoinTest.java
[SortTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/SortsTest.java
[VirtualViewTest.java]: ./src/test/java/com/github/wenhao/jpa/integration/VirtualViewTest.java
Expand Down

0 comments on commit 06c38a8

Please sign in to comment.