All 7 Things I've Written About csharp
Learnings I'll find when I try to do them again.
Choosing Between Controllers and Minimal API for .NET APIs
.NET now offers several methods for creating APIs. Let's cover the pros & cons of building with Controllers, Minimal API, and more.
Alias any Type with C# 12
With C# 12, you can now alias type, including tuples, array, pointer, and unsafe types.
Using Primary Constructors in C# 12 & .NET 8
C# 12 provides a new way to use constructors that can potentially save you time, but there are several things to watch out for.
Choosing Between Blazor Server or WebAssembly
Building for the web using a language you're already comfortable with? Sounds like a great idea as long as it's easy to use and performs well for clients.
I See What You're Saying: Sentiment Analysis With OpenTok and Azure Face API
Building a multi-party video conference that allows us to analyze the sentiment of each participant based on their facial expression.
Using AutoMapper with ASP.NET Core 3
AutoMappers usage via dependency injection changed in ASP.NET Core 3. This post shows how to use the new implementation.
Adding HATEOAS to an ASP.NET Core API
RESTful APIs provide a great way to make our APIs easier for users to consume. How can we make discovering endpoints and capabilities easier?