|
|
Browse by Tags
All Tags » Native Queries » identity (RSS)
-
Carl Rosenberger:
There is no way to enable 'idendity' for QBE ?
Yes there is:
query.constrain(new A(specificB));
query.descend(''b'').constraints().identity();
(...)
Native Queries are our primary query interface, so this is how you ''should'' set up the query, completely typesafe and refactorable, without having to ...
-
I found a mistake in the SODA query above. I have to add the identity flag to the _product constraint:
Query q = container.query();
q.constrain(Attribute.class);
q.descend(''_product'').constrain(lProduct).indentity().and(q.descend(''_language'').constrain(''de''));
lList = q.execute();
So this SODA query returns the ...
|
|
|