Steven T. Cramer

Results 32 comments of Steven T. Cramer

@ABIOLI-COM @mrpmorris It would be much nicer if it were. ``` ```

I don't mean to be flippant. 17000 lines, in a single file? Is there a reason you need that big of a file? Can you not at least split it...

Ok thanks for the explanation. In the mean time you could split the file before sorting, into the size CM could handle, and then sort. Then move the top of...

@akbaramd I enjoy sarcasm :) ChatGPT ``` The question appears to be about using a Material Design Interface (MDI) component in a Blazor application, where multiple instances of a specific...

@aboudoux Please explain? There is only one State per type. If you want to create a collection of things in that state you can. But there isn't a collection of...

You are doing it correctly with the JsonIgnore. Why would you want this CancellationToken serialized and sent to ReduxDevTools? Is there something you want to view in it?

hmm Are you on the latest version? ```cs internal sealed class CloneStateBehavior : IPipelineBehavior where TRequest : notnull, IAction ``` this should only run if the Request implements IAction

`public record UpdateSubProjectListCommand(IEnumerable SubProjects) : IRequest;` this clearly isn't implementing IAction so why is that exception happening, is strange. Here is chatgpt converstaion https://chat.openai.com/c/11b293f5-087e-4eeb-8b8f-425384a64c48 also there is the mediatr issue...

I see your point... if we serialize before going to js then CustomerConverters will run. I am in the middle of updating everything to dotnet 8 now but once that...

This seems reasonable to me at first glance. @mikeyoshino please take a look and let me know your thoughts.