Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
firestar authored Jan 31, 2024
1 parent 4be15ca commit 587ecfe
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,16 @@ public class AuthorDE extends DataEntry<Author>{
}
```

##### Read data
##### Read data for read only
```java
class Application {
public static void main(String[] args) {
Set<DataEntry> first = nucleoDB.getTable(Author.class).get("name", "test");
}
}
```

##### Read data for updating or deleting without needing to use .copy()
```java
class Application {
public static void main(String[] args) {
Expand Down

0 comments on commit 587ecfe

Please sign in to comment.