Skip to content

Fluent Interface

Mathias Rangel Wulff edited this page Jun 13, 2015 · 6 revisions

Fluent Interface

AlaSQL supports fluent like LINW interface:

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

Supported functions

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