Skip to content

Fluent Interface

Mathias Rangel Wulff edited this page Feb 20, 2017 · 6 revisions

Fluent Interface

Experimental

AlaSQL supports fluent like LINQ interface:

    var res = alasql()
              .Where(function(x){x.Population>1000000})
              .OrderBy("Name")
              .exec(params);

Supported functions

  • [Select()](Select Fluent)
  • [From()](From Fluent)
  • [GroupBy()](GroupBy Fluent)
  • [Having()](Having Fluent)
  • [OrderBy()](OrderBy Fluent)
  • [Top()](Top Fluent)
Clone this wiki locally