AspNetCoreOData
AspNetCoreOData copied to clipboard
ASP.NET Core OData: A server library built upon ODataLib and ASP.NET Core
Need support to have ROW_NUMBER() column with PARTITION BY and ORDER BY clause to be used along with $filter to retrieve specific entities based on the rank no. e.g. for...
**Assemblies affected** Current **Describe the bug** A delta `PATCH` request that contains an element with `@removed` results in a `null` `Delta` object in the controller method. **Reproduce steps** This request:...
When I use the IAsyncEnumerable with a $filter query. Then I get the error that I can't use $filter on a single item but it is on multiple items ```...
ASP.NET Core OData 8.2.3 I am trying to do a post to http://localhost:5107/v1/users('michel')/calendarGroups which works without Accept: application/json;odata.metadata=full , but with I get the error ``` Value cannot be null...
* ASP.NET Core OData 8.0.12 * This seems like the same issue: https://github.com/OData/WebApi/issues/2704 I have a simple controller with a `Get` method, which reads from the database. The `EntityFramework` model...
**Assemblies affected** ASP.NET Core OData 8.2.3 **Describe the bug** Consider the following data model and OData controller: ```csharp namespace NS.Models { public class Employee { public int Id { get;...
*Short summary (3-5 sentences) describing the issue.* I have an entity that has a property, and that property is a complex type. When I return a derived class from the...
**Assemblies affected** ASP.NET Core OData 8.x ModelBuilder **Describe the bug** Today, we use the fact that a property of a CLR type is of type Dictionary to determine that the...
**Assemblies affected** ASP.NET Core OData 8.2.2 **Describe the bug** I'm using OData + EF 7 + NPGSQL. I have a field in DB which has a type `text[]`. When I...
Fixes #766. If we have $select and $expand in the request query, the result is collection of ISelectExpandWrapper. It's not easy for customers to do further. So Add 'Cast' Extension...