AspNetCoreOData
AspNetCoreOData copied to clipboard
ASP.NET Core OData: A server library built upon ODataLib and ASP.NET Core
Hi, My team and I have noticed that when hitting an OData endpoint in parallel, the results returned seem to get scrambled, as though there is some kind of cross-talk...
We have trying to build our REST services in .NET 5.0 using the “ASP.NET Core OData 8.0 preview3” package. However we are wondering which is the more appropriate tool to...
I am using this library in a custom project but not with the odatacontrollers, but a custom endpoint implementation instead. ``` var context = new ODataQueryContext(manager.Model, type, new Microsoft.OData.UriParser.ODataPath()); IODataFeature...
Hi, I would like to use OData to only GET (read-only) data from a SQL view which I have mapped as a ComplexType since there are no keys. I haven't...
I built a post endpoint. The data gets inserted into the database fine. But it throws the above error when returning: System.InvalidCastException: Unable to cast object of type 'Microsoft.OData.UnknownEntitySet' to...
"link" parameter is null when CreateRef is called ### Assemblies affected Microsoft.AspNetCore.OData 8.0.8 ### Reproduce steps ``` public class A { [Key] public int Id { get; set; } public...
**Assemblies affected** Microsoft.AspNetCore.OData 8.0.8 **Describe the bug** I have the following data structure: 1. Simple entity with a nav property on a collection (Employee) 2. Second entity with nav property...
I have an action which returns an object type, and I want this object to be returned as an untyped json structure, how can I do that?
In my configure services if i add these` services.AddVersionedApiExplorer();` it will break the swagger and saw us swagger with 'No operations defined in spec!' if i comment out this code...