nader karayanni
nader karayanni
Hi team, we are using AspNetCore.Odata 8.0.8 for a simple get api with paging. the Default paging uses Skip - which is causing us regressions with EFC (inefficient query) in...
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);...
https://github.com/OData/AspNetCoreOData/blob/4721f7aa9b84ba5c2ff914fa4ca860d146b87534/src/Microsoft.AspNetCore.OData/Routing/Template/KeySegmentTemplate.cs#L152 When routing Odata Request, an exception is thrown (the full exception is provided at the end of the issue) this exception casuses an immediate 500 response (no layer can...