Hi i wonder why you can't use a collection as search object it self.
Eg (selfservice)
OrdreCollection o = new OrdreCollection();
o.Address.Town = "London";
o.TotalPrice = 400;
o.SearchAndFill();
Now i eg had filled the o collection with 15 orders.
The reason is that I often don't want the flexibility like > in my search and above would really be a LOC saver.
Would it be problematic to implement?
Anders