superska wrote:
Otis wrote:
You mean, show the same query in linq, queryspec and low-level api?
Yes, that would be a great aid in figuring out which approach to choose, I think.
Greetz,
Stefan
We mainly provide queryspec queries, because linq queries are the same as in the general microsoft docs for linq and linq to objects. Our low-level API for fetching is still there of course but we recommend using either linq or queryspec for fetching, as they provide easier interfaces and are more powerful with less code.
The queryspec example queries (Which didn't run for you) all come with the equivalent linq query in comments. In general people choose one api they are either familiar with (e.g. linq) or they find easier to use (linq or queryspec). Linq is somewhat less verbose, but queryspec is more predictable and if you're a sql oriented person it's easier to convert a query from sql to queryspec than to linq.