This project is a client side OData V4 typescript library for Angular2+. The goal is to create an easy to understand fluent API for querying, creating, updating and deleting OData resources in Angular2+.
To install the package use npm install --save odata-v4-ng
import { AppComponent } from './app.component';
import { ODataModule } from 'odata-v4-ng';
...
@NgModule({
declarations: [
AppComponent
...
],
imports: [
ODataModule
...
],
bootstrap: [ AppComponent ]
})
export class AppModule { }
See here.
See here.
See here.