Overview & Setup
For each OData service odata2ts will generate one corresponding OData client.
The Main Service
So odata2ts generated the main service class, and you created the instance:
Querying
One of OData's core strengths is its powerful querying capabilities.
Filtering
OData specifies numerous filter operators and functions and odata2ts implements most of them.
Binary Content
OData carries binary data in two shapes, and odata2ts generates a service of its own for each:
Optimistic Concurrency
Some resources may only be changed by a client that can prove it knows the current state. The service
Subtypes and Type Casts
OData models inheritance: Book extends PrintMedium extends Medium. A collection of Medium then
Batch Requests
A batch sends several requests in one $batch call. odata2ts builds the batch for you: you add the
HTTP Client
4 items