Comment by hackeredje

4 years ago

Is this not Linq ? https://stackoverflow.com/questions/tagged/linq ?

And then dump the queries via https://stackoverflow.com/questions/1412863/how-do-i-view-th... or https://www.linqpad.net/ ?

Indeed. It looks a lot like dotnet's Linq.

  • wr to linq to sql: the difference is linq works by making objects to tables and dotnet primitives to sql types, often producing really poor queries as a result

    • That's the underlying implementation decision, not necessarily caused by the language syntax/semantics.