#csharp
Read more stories on Hashnode
Articles with this tag
I'm currently experimenting with rewriting the way domains are described in Sekiban, Event Sourcing and CQRS Framework, to be simpler and more...
I am Tomohisa Takaoka, CTO of the J-Tech Japan, We are currently developing Sekiban, an Event Sourcing/CQRS framework, at the company. It is an...
TL;DR When serializing/deserializing a class with an interface property like public record User(string Name, IUserEmail Email); in C#, you can achieve...
"JsonDerivedType" is an attribute in C# that can be attached to a parent interface to define which types implement that interface, allowing the state...
.NET, the framework on which C# runs, supports multiple languages, one of which is F#, a functional programming language. We developed Sekiban, an...
Recently, I have been creating ResultBoxes to practice Railway Oriented Programming, which involves using the Result pattern for error handling and...