ODataAngularResources icon indicating copy to clipboard operation
ODataAngularResources copied to clipboard

Fluent OData queries from Angular's Resources

Results 24 ODataAngularResources issues
Sort by recently updated
recently updated
newest added

The 'substringof' OData function mentioned in the Readme is no longer valid for OData v4, as according to the URI Conventions it was renamed as 'contains'. See section 5.1.1.5.2 of...

I noticed a memory leak within our application and tracked it to inside or around my usage of this component. I have some jsfiddles set up to demonstrate. If you...

Absolutely love this repository; I have used it on three projects so far with great success. One thing though, my OData v4 APIs (in .NET) require entities with string typed...

…was causing a bug when using GUID in an ODATA V4 Endpoint

Is it available to use it on an typescript+angular4 project?

Does this library supports [OData v4 Actions and Functions](https://docs.microsoft.com/en-us/aspnet/web-api/overview/odata-support-in-aspnet-web-api/odata-v4/odata-actions-and-functions)?

I found the following approach to get the final URL (after applying all filters, sorting, expansions, etc) that will be made to the server, using the **undocumented** "_execute_" method on...

If I execute this: ``` $odataresource("http://services.odata.org/V4/Northwind/Northwind.svc/Products", {}, {}, { isodatav4: true}) .odata() .filter('UnitPrice', '>', 10) .filter('Discontinued', true) .orderBy('UnitsInStock', 'asc') .expandPredicate('Order_Details') .expandPredicate('Order') .filter('OrderDate', new Date('1996-07-17T00:00:00Z')) .finish() .finish() .query(); ``` I get...

Hi, at first, great job! Is there intention to support cancel request like resource in 1.5.x? Ref. $cancelRequest: - https://code.angularjs.org/1.5.0/docs/api/ngResource/service/$resource - https://stackoverflow.com/questions/35066781/angularjs-cancelrequest-not-available-in-resource Thx