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
trafficstars

**Assemblies affected** ASP.NET Core OData 8.x **Describe the bug** I have an application that uses OData 8 with .net 7 For all the ODataControllers, the built-in routing conventions by default...

bug

I set MaxTop=100 and PageSize=100 on my controller and expanding entity. When the data is larger than 100 then it gives the next page link for main entity and for...

follow-up

**Assemblies affected** ASP.NET Core OData 8.0.8 **Describe the bug** Maximum number of bytes exceeded when calling an action. **Reproduce steps** Call an action such as: ``` [HttpPost("/api/ImportItems()")] public async Task...

bug

**Assemblies affected** ASP.NET Core OData 8.x **Describe the bug** ODataActionParameters raises an exception when the model was configured with a class with no default constructor (ie immutable class). **Reproduce steps**...

bug
feature

Hi, it seems to me that the default convention PropertyRoutingConvention does not work anymore after update to the 8.0 version. Using the UseODataRouteDebug middleware I can see my propertyref routes...

investigating

**Assemblies affected** ASP.NET Core OData 8.x **Describe the bug** Excel doesn't escape '/' characters in keys when calling OData endpoint. Therefore, the routing fails. **Reproduce steps** Any key which is...

bug

The @odata.context url for the contained entity does not include the key of the entity-set. e.g http://host/service/Orders(4711)/Item Expected @odata.contex url in the response should be http://host/service/$metadata#Orders(4711)/Item/$entity Actual @odata.contex url in...

bug

All versions starting from ASP.NET Core OData 8.0.4+, including 8.0.11. In 8.0.3 it works correctly. ODataQueryOptions.Validate method doesn't throw exception when "cast" function is used in $filter when AllowedFunctions set...

bug

ASP.NET Core OData 8.0.11 Hi, i have problem with batch request. Request finished HTTP/1.1 POST http://localhost:5000/odata/$batch multipart/mixed;+boundary=batch_id-1664271614387-17 343 - 200 but the GET inside batch return > 404 Not Found...

bug

When applying the `AutomaticallyExpand` or `[AutoExpand]` for a navigation property, the expected behavior is to expand it automatically. It works when getting the entity from root level, but it doesn't...