Create, Read, Update, Delete tramite REST API.
GET /api/v1/dsn/demo/tables/Customers?$top=5 // Response { "data": [ { "Id": 1, "Name": "Mustermann GmbH" }, { "Id": 2, "Name": "Example Corp" } ], "count": 2 }
POST /api/v1/dsn/demo/tables/Customers Content-Type: application/json { "Name": "Nuovo Cliente", "Country": "Germany" }
PUT /api/v1/dsn/demo/tables/Customers Content-Type: application/json { "primaryKey": { "Id": 42 }, "fields": { "Name": "Aggiornato" } }
DELETE /api/v1/dsn/demo/tables/Customers?Id=42