Fanny Deng

Results 8 comments of Fanny Deng

@habbes This was running on netcoreapp3.1

@habbes Yes we instantiate one instance of `DataServiceContext` per request.

I'm also getting 404 errors from $batch endpoints. I'm using Asp.Versioning.OData 6.0.0, Microsoft.AspNetCore.OData 8.0.11 and .NET 6. My setup is something like ``` public void ConfigureServices(IServiceCollection services) { services.AddControllers() .AddOData(options...

A few more details to add: A micro benchmark sending single requests did not yield any throughput differences when comparing using `EnableQueryAttribute` vs without using `EnableQueryAttribute`. This problem only reproduces...

Thank you for the quick investigation! > Which version of API Versioning are you actually using? We are using API Versioning 4.1 and MVC for routing. > Is there some...

Interestingly, `SelectBestCandidate` was only hit once during my debugging session. Here are some additional observations: - The RouteCollection contains three routes for 2 API versions 1.0 and 2.0 ![image](https://github.com/OData/WebApi/assets/8739237/f534805a-7b8b-41ed-bbf6-295d081fb806) -...

Thank you @commonsensesoftware. Here is a simple repro for this issue https://github.com/fannydengdeng/ODataApiVersioning/tree/main/ODataApiVersioning - This does not throw InvalidOperationException: `GET https://localhost:7156/api/people?api-version=1.0` - This throws InvalidOperationException in CreateRequestContainer: `GET https://localhost:7156/api/people?api-version=2.0` - RouteCollection...