Replace FluentAssertions with AI
New year - new .NET drama. You would have thought that positive lessons had been learned from the last Moq drama; but we were proven wrong.
Read Blog PostNew year - new .NET drama. You would have thought that positive lessons had been learned from the last Moq drama; but we were proven wrong.
Read Blog PostIn the world of Microsoft SQL Server , views are a powerful tool for simplifying complex data queries. Simple views offer no real performance gain but are often used to implement simple database queries (I still would …
Read Blog PostRecently I have been working more and more with HTML and frontend development in general and had the task of loading favicons from various addresses to make links more visually attractive. Here I came across a hidden …
Read Blog PostEF Core Migration Bundles are standalone executable files that contain one or more Entity Framework Core migrations and can be applied directly to a database. They are particularly useful for deploying migrations …
Read Blog PostThere are various reasons why it is useful to channel certain requests through your own application to an external endpoint; the most obvious is, for example, as a workaround for client statistics from browser adblockers …
Read Blog PostRate Limit is a great tool to protect your own website and content from misuse; in some cases, however, rate limiting is also bad: for example, if you want your own content to be indexed by Google Search in order to …
Read Blog PostThere are many ways to remove spaces or other characters in a string - there are just very big differences in terms of performance and efficiency.
Read Blog PostCode formatting is a very important element when developers work together on a project - and you are always well advised not to invent your own formatting rules, but to use those that are a standard or de facto standard …
Read Blog PostSustainable Code is a constantly growing GitHub repository created by me , in which I collect various everyday code snippets and measure the performance of the different implementation ways. The goal is to create a …
Read Blog PostA popular unit test - and also a necessary test - is the correct registration of interfaces and their implementation with dependency injection. And a common mistake is that the associated IServiceCollection interface is …
Read Blog Post