Repository: cayenne Updated Branches: refs/heads/master 8a3b43c39 -> 96914de46
Update readme Project: http://git-wip-us.apache.org/repos/asf/cayenne/repo Commit: http://git-wip-us.apache.org/repos/asf/cayenne/commit/96914de4 Tree: http://git-wip-us.apache.org/repos/asf/cayenne/tree/96914de4 Diff: http://git-wip-us.apache.org/repos/asf/cayenne/diff/96914de4 Branch: refs/heads/master Commit: 96914de4667db32abab2b3d84c7bc7a2ab5629c9 Parents: 8a3b43c Author: Nikita Timofeev <stari...@gmail.com> Authored: Fri Feb 2 15:25:44 2018 +0300 Committer: Nikita Timofeev <stari...@gmail.com> Committed: Fri Feb 2 15:25:44 2018 +0300 ---------------------------------------------------------------------- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cayenne/blob/96914de4/README.md ---------------------------------------------------------------------- diff --git a/README.md b/README.md index cb7937d..51e0e75 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,8 @@ List<Painting> paintings = ObjectSelect.query(Painting.class) .select(context); // Select count -long count = ObjectSelect.query(Painting) - .where(Painting.ESTINATED_PRICE.gt(10000)) +long count = ObjectSelect.query(Painting.class) + .where(Painting.ESTIMATED_PRICE.gt(10000)) .selectCount(context); ```