Meng wrote:Have you every tried such a query; Find car where Car.Pilot.point = 100 I don't know how to convert such a query into SODA, any hints are greatly appreciated!
I recommend you Native Queries if you are not worry about performance issues.
code would be like that:
IList<Car> result = container.Query<Car>(delegate(Car c){return c.Pilot.Point==100;});
seems nice, doesnt it?