From: Gavin_King/Cirrus%<CI...@ci...> - 2002-05-28 03:15:16
|
Just added support for queries like: from foo in class Foo where foo.barSet.size = 1 I would have done this ages ago, if I would have realized how easy it would be...... Also I removed the requirement for the brackets in from foo in class Foo where exists(foo.barSet.elements) and 1.0 > all(foo.barSet.elements) so now you can just write from foo in class Foo where exists foo.barSet.elements and 1.0 > all foo.barSet.elements which is arguably neater. :) |