Skip to content

Commit 74dd1ed

Browse files
authored
Update store.md
1 parent 947ab1a commit 74dd1ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs-api/docs/database/store.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The `Entity` class with corresponding decorators **CustomerEntity.ts** (note the
102102
response.println(JSON.stringify(selectWithParams, null, 2));
103103

104104
response.println("");
105-
response.println("Select customers with first name starts with J with named query:");
105+
response.println("Select customers with first name starts with M with named query:");
106106
let selectWithParamsNamed = store.query("from Customer c where c.name like :first_name", [{ "name": "first_name", "type": "VARCHAR", "value": "M%" }]);
107107
response.println(JSON.stringify(selectWithParamsNamed, null, 2));
108108

0 commit comments

Comments
 (0)