srollinet

Results 24 comments of srollinet

@beatsm You say that you have build errors when you build within Visual Studio. I don't know if it is the same issue but I cannot build using VS due...

@chrissainty Yes, in fact I modified the method signature (temporarily) to make it testable this way. Normally it won't impact the result. In the original method, you are passing an...

@chrissainty It is the first time I have this scenario with FluentValidation, And I think it is quite uncommon. Finally, I switched to a custom implementation based on https://github.com/ryanelian/FluentValidation.Blazor, which...

I try to do something similar, with extension methods that allow to map a route to a an IRequest. Something like that ```csharp app.MediatR().MapGet("/hello", (string name) => new HelloQuery(name)); ```...

@vip32 No, I haven't done anything. And I will probably wait for asp.net core 7 because the new `[AsParameters]` attribute will simplify a lot what I want to achieve https://devblogs.microsoft.com/dotnet/asp-net-core-updates-in-dotnet-7-preview-5/

Note: this issue may affect any container with a random host port binding, not only Ryuk. So you may have issues like "cannot connect to DB" But for "regular" containers...

Yes, I never had problems with CI pipelines. Usually the problem is for local test executions. Restarting the winnat service works, yes. But personally, I will systematically use something similar...

Pay attention if you include vendor dependencies to `MySqlTestcontainer`, it is quite a mess There are 3 variants - [MySql.Data](https://www.nuget.org/packages/MySql.Data) - [MySqlConnector](https://www.nuget.org/packages/MySqlConnector) - \>= 1.0.0 - < 1.0.0 (which is...

I already talked about an idea here: https://github.com/dotnet/orleans/issues/5738#issuecomment-556400109 The idea would be to provide a class like `AbstractAdoGrainStorage` that declares the same methods as the IGrainStorage but with an additional...

Ok, maybe I'm a bit off topic... my suggestion is more for the issue @sammym1982 has > I had a similar need as I dont want the state be serialized...