2.3 Paging OData

Suddividere grandi volumi di dati in pagine.

Paging Client

# Primi 10 record
GET /odata/demo/Customers?$top=10

# Prossimi 10 (Skip 10)
GET /odata/demo/Customers?$top=10&$skip=10

# Con conteggio totale
GET /odata/demo/Customers?$top=10&$count=true

Paging Server

Con risultati grandi il server fornisce automaticamente un @odata.nextLink:

{
  "value": [...],
  "@odata.nextLink": "/odata/demo/Customers?$skip=100"
}

Ordinamento

$orderby=Name              // Crescente
$orderby=Name desc         // Decrescente
$orderby=Country,Name      // Piu colonne
Zuletzt geändert: il 29/01/2026 alle 23:30