Browsing Tag
dotnet
97 posts
Unit testing with Xunit: Introduction
Wolf Fact: That’s how a pack of wolves sound Xunit.net is a free, open-source, community-focused unit testing tool…
Dica C#: Ref Locals and Returns
Vamos falar sobre Ref Locals and Returns, introduzidos no C# 7, que permitem que métodos retornem referências a…
Move IO to the Edges of Your App
I originally posted an extended version of this post on my blog a long time ago in a…
Tool call with local model using Ollama and AutoGen.Net
Ollama, starting from version 0.3.0, supports tool calls with popular models like llama 3.1 and mistral. This functionality…
Running Kubernetes locally with Kind and .NET 8 (plus a bonus with Lens)
This isn’t a tutorial about kubernetes, kind, or an API with .NET. It’s just something that helped me…
What’s New in .NET 9 Preview 6: Comprehensive Overview
On July 9th, 2024, Microsoft released .NET 9 Preview 6, featuring significant updates and enhancements across the framework.…
Dependency Injection in .NET with Microsoft.Extensions.DependencyInjection and Scrutor
Dependency Injection (DI) is a crucial design pattern in modern software development that enables the construction of more…
Result Pattern
The use of exceptions in C# is basically okay, but you should be careful not to use too…
Task vs ValueTask
Why is asynchronous programming important? In today’s software development, many tasks are time-consuming, especially those based on input/output…
Multi-Tenant SaaS Architecture – Database Per Tenant
SaaS applications benefit from the multi-tenant architecture. It makes the maintenance and enhancements of the software easier and…