Steven Darby

Results 11 issues of Steven Darby

As per https://github.com/dotnet/aspnetcore/issues/42950 I have added the following to my appsettings.json `Logging:LogLevel` section in order to filter out logging by the ASP.NET Core ExceptionHandlerMiddleware: `"Microsoft.AspNetCore.Diagnostics.ExceptionHandlerMiddleware": "None"` I can confirm this...

bug

**Is your feature request related to a problem?** I use the exception handling middleware in ASP.NET Core - `UseExceptionHandler()` When I handle an exception in the ExceptionHandler delegate, the exception...

enhancement

The Microsoft.AspNetCore.OData.NewtonsoftJson package is great for adding Newtonsoft converters for OData classes to MVC It would also be handy to be able to use these converters outside of an MVC...

I am adding the requested API version to the global properties via a telemetry initializer. The API version is a string in a date format e.g. 2024-02-12. When viewing this...

bug

If I have a model: ```C# public class Model { [Key] public int Id { get; set; } public NestedModel NestedModel { get; set; } } public class NestedModel {...

question

- Use [CallerArgumentExpression] for parameterName argument in Check methods - Remove explicit setting of parameterName from uses of these methods Fixes #33523 - [x] I've read the guidelines for [contributing](CONTRIBUTING.md)...

Just a small, internal code-cleanup suggestion to make use of [`[CallerArgumentExpression]`](https://learn.microsoft.com/en-us/dotnet/api/system.runtime.compilerservices.callerargumentexpressionattribute?view=net-8.0) in the `Check` helper methods, so that the parameter name don't have to be explicitly passed in everywhere.

type-enhancement
customer-reported
area-global

@naugtur My proposal would only be what @adevine has already proposed further up: > my plan is to fork this repo (and happy to submit a PR back if so...

Include whether a vulnerability stems from `dependencies` or `devDependencies`. I believe this used to be a feature in previous versions. If possible, please consider adding it back, as it would...

I've been looking for a way to not parameterise values used in query filters. One use-case for this could be to add TenantId filters to entities in a multi-tenant DB....

type-enhancement
customer-reported
area-query