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

I'm building an OData API that will be hosted in a multi-tenant and load-ballanced environment with multiple backend servers/nodes. Also, web requests may be routed to backend apps by our...

question
feature

Hi, Would it be possible to improve LINQ2DB support? I've noticed that most of my problems came from null propagation handling. The HandleNullPropagationOptionHelper has some hardcoded namespaces for Microsoft DB...

enhancement
P3

Hi, We are currently working on a project with .Net 6, EF Core 6, Npgsql provider and AspNetCore.OData. There is still a problem with the Expression generation because the expression...

bug

Hello, I'm using OData for my project. And my entity must have a dynamic property. When I create an entity, its success as expected But when I try to get...

Microsoft.AspNetCore.OData v8.0.8 In my EDM model I have a function declared in this way: ``` function = builder.Function("MyFunction"); function.Parameter("customId"); function.Returns(); ``` If I call the function, the server response will...

followup

Having asp.netcore odata service that returns an action with the following complex type that has stream property. ``` public class customerResponse { public string Id { get; set; } public...

followup

### OData Version 8.0.5-8.0.7 ### Description When using something like `$filter=Relation/any(r: ...)` to filter on sub-lists in an endpoint that uses ODataQueryOptions.ApplyTo with v8.0.5 or newer, it always fails with...

investigated
investigating
regression

`ODataInstanceAnnotationContainer` in OData\WebApi allows CLR types to add annotations by having a `ODataInstanceAnnotationContainer InstanceAnnotations` property as seen [here](https://github.com/OData/WebApi/blob/0338075c9940fe29c6fd18cd3f9e0433fd82d745/test/E2ETest/Microsoft.Test.E2E.AspNet.OData/Build.AspNet/InstanceAnnotations/AnnotationController.cs#L76). This functionality was added in https://github.com/OData/WebApi/pull/2219 but never ported to `AspNetCoreOData`. For...

feature

I see some [sample code in here](https://github.com/OData/AspNetCoreOData/tree/master/sample) but would we be able to get a doc on how to setup OpenAPI with OData 8?

documentation

I'm trying to upgrade our project to .net core 5, which apparently requires upgrading to OData 8. But, OData 8 appears to be incompatible with [Microsoft.AspNetCore.OData.Versioning.ApiExplorer](https://github.com/microsoft/aspnet-api-versioning/issues/677), so I was required...

followup