タグ

ブックマーク / elliotswebsite.com (1)

  • PINQ - Home

    What is PINQ? Based off the .NET's LINQ (Language integrated query) , PINQ unifies querying across arrays/iterators and external data sources , in a single readable and concise fluent API . A quick example The following shows an example query using the PINQ library: $youngPeopleDetails = $people -> where ( function ( $row ) { return $row [ 'age' ] <= 50 ; }) -> orderByAscending ( function ( $row )

    kfujii
    kfujii 2016/01/04
  • 1