Stefan Kip
Stefan Kip
I have the same sort of issue, for example this is the model: ``` { "ID": 12345, "SomeProperty": "SomeValue", "AnArrayOfValues": [ { "Key": "2020", "Amount": 1234 }, { "Key": "2021",...
@vrao1020 thanks for the hint regarding the usage of the `HasName` method! I was wondering how I could use my own DTO combined with entities. One small improvement I made...
You're asking for the other way around. This package adds an OAuth server, not OAuth client. There are many plugins available for your question: https://docs.microsoft.com/en-us/aspnet/mvc/overview/security/create-an-aspnet-mvc-5-app-with-facebook-and-google-oauth2-and-openid-sign-on
Too bad this has bled to death
Too bad this has bled to death
Too bad. The fork isn't working either for me.
With latest ocelot it doesn't work in the `PreErrorResponderMiddleware` delegate, because the `context.DownstreamReRoute` property is null. I used the `PreQueryStringBuilderMiddleware` delegate instead.
I had to change the `LightInjectScopedConnection` to this: ```csharp public class LightInjectScopedConnection : HubDispatcher { private readonly IServiceContainer _container; public LightInjectScopedConnection(IServiceContainer container, HubConfiguration config) : base(config) { _container = container;...
In my case I'm using the `AppCaches.RuntimeCache`, don't know what the underlying Cache system is, but I guess `HttpContext.Cache` sounds about right.