AspNetCoreOData icon indicating copy to clipboard operation
AspNetCoreOData copied to clipboard

ASP.NET Core OData: A server library built upon ODataLib and ASP.NET Core

Results 346 AspNetCoreOData issues
Sort by recently updated
recently updated
newest added

**Assemblies affected** ASP.NET Core OData 8.2.4 **Describe the bug** When I try using a built-in or custom function in an $orderby expression inside a $select I get the following exception:...

bug

**Assemblies affected** Which assemblies and versions are known to be affected e.g. ASP.NET Core OData 8.x ASP.NET Core OData 9.1.1 **Describe the bug** Filtering on an Enum property using the...

bug

**Assemblies affected** Which assemblies and versions are known to be affected e.g. ASP.NET Core OData 8.x ODL enables $count after navigation property in the $expand, ~/$expand=$navProp/$count ~/$expand=$navProp/$count($filter=prop gt abc) ~/$expand=$navProp/$count($search=prop)...

feature

Our project is using .NET8 Odata 8.2.2 When running our project, each time the code does retrieves or saves data in Business Central through Odata the memory usage goes up...

bug
P1

**Assemblies affected** Microsoft.AspNetCore.OData 9.1.1 **Describe the bug** A clear and concise description of what the bug is. **Reproduce steps** Send invalid JSON to OData endpoint **Request/Response** ``` POST /something HTTP/2...

bug

**Assemblies affected** .NET 9.0 Microsoft.AspNetCore.OData 9.1.0 Microsoft.OData.Core 8.21 **Describe the bug** [ApiExplorerSettings(GroupName = "OData")] [ODataRouteComponent("global")] [Route("/odata/global")] public class SystemDataTypeController(GlobalDbContext _db) : ODataController { [EnableQuery] [HttpGet("SystemDataType")] public IQueryable Get() { return...

bug
P2

.NET 9 is finally out: https://learn.microsoft.com/en-us/dotnet/core/whats-new/dotnet-9/overview. Let's add .NET 9 as a target framework.

P2

Hello everyone, I'm currently working with .NET 8, OData 9, EF Core 8, and PostgreSQL. When I make requests using certain OData queries that are valid in OData but incompatible...

bug

It's absolutely essential for scalability that this library can support queries which can be done asynchronously. Right now, the [EnableQuery] Attribute will take a query from Entity Framework Core and...

feature

The code below will fail: ``` var settings = new ODataQuerySettings() { PageSize = 10 }; var items = await query.ApplyTo(data, settings).Cast().ToListAsync(ct); ``` Exception: `The source 'IQueryable' doesn't implement 'IAsyncEnumerable'....