AspNetCoreOData
AspNetCoreOData copied to clipboard
ASP.NET Core OData: A server library built upon ODataLib and ASP.NET Core
Hi, I have a .NET 5 web API with OData 8.0.6 installed. Currently I'm hitting an endpoint and I get the result as: ``` { "items": [ ... ], "count":...
I have many controllers with ODataQueryOptions parameter for my actions. I don't use ODataModelBuilder for my entities. It works good for my scenario but now I want to use my...
Looking at the current implementation, I was wondering if there were plans for supporting either Json.Net or System.Text.Json serializers. The library does not implement a standard Json serializer and only...
**Assemblies affected** ASP.NET Core OData 8.0.8 **Describe the bug** when `ODataConventionModelBuilder.EnableLowerCamelCase()` is enabled, the controller method described [here]( https://docs.microsoft.com/en-us/aspnet/web-api/overview/odata-support-in-aspnet-web-api/odata-v4/entity-relations-in-odata-v4#getting-related-entities) will not be hit if the method name is `GetSupplier`. However...
*Short summary (3-5 sentences) describing the issue.* We want to use the ISO date-time format yyyy-MM-dd'T'HH:mm:ssZ for the Odata API request and response. *Which assemblies and versions are known to...
Hi Team, I have a simple controller - using Odata8.0.8 in .Net6 ```cs public class StudentsController : BaseExternalController { [HttpGet("Students/{key}/GetStudentGrades")] public async Task GetStudentGrades(string key) { business logic... return Ok(grades);...
I am trying to use the OData lib for a very specific use case, but I am not sure if there is a native support for that. I have prepared...
We have a number of existing controllers with the same names as our OData controllers and we would like to keep it that way since we use /api/controller for the...
I am using Microsoft.AspNetCore.OData 7.5.2 on server and OData Connected Service 0.11.1 on client. The client code tries to update a property on an Entity with type NTSTopology.Geometry.Point, the client...
I have `Customer` and `ImageData` entities and a link table `CustomerImage` that models a many-to-may relationship. Therefore I can use an `$expand` inside an `$expand` to get the images for...