Select Page
Solving Visual Studio 2022 slow, lagging IntelliSense

Solving Visual Studio 2022 slow, lagging IntelliSense

Problem MS Visual Studio 2022 (currently v17.4), e.g. within a simple C# .NET console app, becomes nearly unresponsive, taking multiple seconds while typing a few characters into the editor. Solution/Workaround Watch the current background tasks VS is running at the...

ASP.NET EditorTemplates

[:en]ASP.NET offers a good way to keep your code clean of redundant data, e.g. Bootstrap classes you would have to assign to every visible HTML element again and again. As a .NET Core MVC sample for single elements, you would write code like @Html.TextBoxFor(m =>...

[:de]ASP.Net MVC, Entity Framework: Benutzerfreundliche Model-Spaltenbezeichnungen (Metadaten)[:en]ASP.Net MVC, Entity Framework: Show user friendly model column names (Metadata)[:]

[:en]Databases like MySQL do not allow any special characters in table column names, so most developers use camelcase or underscores. To make it readable for the end user in your software, you often have to manually type a friendly description. As there is no way to...