-
Notifications
You must be signed in to change notification settings - Fork 664
Fluent Interface
Mathias Rangel Wulff edited this page Feb 20, 2017
·
6 revisions
Experimental
AlaSQL supports fluent like LINQ interface:
var res = alasql()
.Where(function(x){x.Population>1000000})
.OrderBy("Name")
.exec(params);
- [Select()](Select Fluent)
- [From()](From Fluent)
- [GroupBy()](GroupBy Fluent)
- [Having()](Having Fluent)
- [OrderBy()](OrderBy Fluent)
- [Top()](Top Fluent)
© 2014-2024, Andrey Gershun & Mathias Rangel Wulff
Please help improve the documentation by opening a PR on the wiki repo