News

Learn how to implement a custom mapper to handle complex data structures or incompatible ... we’ll see how we can implement a simple but fast object mapper in C#. First off, let’s create ...
You can also implement value objects using records in C#. To do this, you use the record keyword to define a record type that encapsulates data much the same way we did with the Author class earlier.
You now have data that is guaranteed to be identical taking up twice as much space as necessary. But, in C# 9, you can just create a record and get a value object that does everything you want. Here's ...