Chris Bush
Chris Bush
I've created a pull request for this. It's still very rough around the edges and needs some work, but it provides basic pipeline support. I welcome anybody's changes to it...
I opened a PR to address this. Adding them as extension methods doesn't work in the general case because if you try to unsubscribe from the event, it's a different...
Hi from the future. This flaw in these quality gates is particularly bad when dealing with .NET 6's new minimal APIs, where you might have route handlers, DI code, and...
So I was able to get this to work with a kind-of-hacky workaround. My Program.cs looks something like this: ``` csharp var app = WebApplication.CreateBuilder(args) .BuildDefaultConfiguration() .ConfigureServices((services, configuration) => {...
Thanks. The limitation is obviously that you can't really pass in LINQ expressions for data constraints. I was thinking about potentially adding the ability to specify properties by name or...