mk1024
mk1024
I solved this by changing the `EndpointCounterKeyBuilder` property of `RateLimitConfiguration` from `PathCounterKeyBuilder` ([default](https://github.com/stefanprodan/AspNetCoreRateLimit/blob/5b21509a8cab74ad2244f504d111b583340f3cd0/src/AspNetCoreRateLimit/Middleware/RateLimitConfiguration.cs#L13)) to `EndpointCounterKeyBuilder` (see below). Now the counter keys are using the endpoint "*" instead of the path....
I tried out this idea and it works great in my projects. A large batch process that updates thousands of complex graphs went from 34 to 2 minutes with a...
@cryo75 - If your entities have int/long primary keys and if you set `GraphDiffConfiguration.SkipLoadingOfNewEntities = true` the loading of the **new entity itself** is skipped. Depending on your model it...
@cryo75 - I think that not exposing the fk property (PostCodeModelId) is causing this issue. If PostCodeModel should not be updated/inserted with AddressModel anyway, you could just set PostCodeModelId and...
This would be a great addition to Optimus! I tried out the script features of Optimus with a few sites, but all of them use at least some ES6 features....
You can do this by utilizing the client ID and client whitelist: 1. Use the config to set something like `"ClientIdHeader": "x-is-whitelisted"` and `"ClientWhitelist": [ "yes" ]` 2. Add your...