This project is no longer in development and it's only compatible with angular versions < 13.
A new project has been created, as a fork from this project, to be compatible with angular version 13 and possibly any upcoming angular version https://github.com/ebenefits/odata-v4-ng. I'm not the maintainer of the new project. The new project has a different maintainer that I want to publicly thank to have kept the project alive. Please take a look at the following issue for additional details about the changes #36.
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.