aboutsummaryrefslogtreecommitdiff
path: root/common/view/test.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-09-20 11:53:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-09-20 11:53:04 +0200
commit18a040773c389de7be48111efc0f3cf7252ffc68 (patch)
treee68e5edde6a7f321e03172ecd5684d26644978c9 /common/view/test.hxx
parentf70b64e2c4f9861d7013492b609212ed78e840f5 (diff)
Change query syntax to use . for composite and -> for object pointer access
Also make non-inverse query columns act as both an object pointer and a normal column. The latter allows us to use natural expressions such as query<employee>::employer.is_null ().
Diffstat (limited to 'common/view/test.hxx')
-rw-r--r--common/view/test.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/common/view/test.hxx b/common/view/test.hxx
index 3ba6745..dc3439c 100644
--- a/common/view/test.hxx
+++ b/common/view/test.hxx
@@ -382,7 +382,9 @@ struct view10
//
// Composite in object.
//
-#pragma db view object(person) query((?) + "ORDER BY" + person::age)
+#pragma db view object(person) \
+ query((person::measures.weight > 60 && person::measures.hight < 190) \
+ + "ORDER BY" + person::age)
struct view11
{
std::string last_name;