Mike Marynowski
Mike Marynowski
This is kinda neat but the syntax definitely bothers me as being too subtle of a difference for block vs expression. I think having `$` as a prefix is more...
@0x000000EF When building deeply nested UIs using code it is often desirable to have the elements declared right where they are in the tree, not split off somewhere else. It...
This would be rather useful for some NRT annotations: ```c# [return: NotNullIfNotNull(nameof(source))] public static string? Resolve(object? source) ``` Just needs to also work when applied to the return value or...
The refactoring issue is already kind of a problem with method overloads that have the same name so tooling improvements in this area would be beneficial and could address both...
Or, alternatively, could the built-in model binders handle this situation more appropriately so I don't need to provide that package at all?
@captainsafia Tools like `NullGuard.Fody` and our `RuntimeNullables` library automatically inject null checks that throw `ArgumentNullException` into non-nullable method parameters (including `set_PropertyName(value)` prop setter methods), effectively turning nullable annotations into runtime...
All I need to make this work is a way to detect if ANE is thrown during model binding so I can return a different response, but I need to...
Yup, that's right :) The issue with the middleware approach is that I can't differentiate between ANE thrown during model binding, and ANE thrown during execution of the endpoint (or...
Can anyone merge the PR that fixes this??
Had to use another lib because of this as well so +1.