This is a simple employee database management system Single-Page Application(SPA) in Blazor WebAssembly, that serves as a client app to a REST API.
Read MoreA simple database management system with Blazor SPALearn five ways of passing data between components in Blazor - route parameters, querystring, state container object, component and cascading parameters.
Read MoreFive ways to pass data between components in BlazorIn the spirit of the 20th anniversary of .NET, I make a bold prediction - that C# will become the most popular programming language by 2035, and I explain why.
Read MoreWhy C# Will Be the Most Popular Language By 2035I present to you a word cloud of technologies mentioned by Nadella from Microsoft Build 2022 - key phrases and terms that you want to learn as a .NET developer.
Read MoreBuzzwords from Satya Nadella’s keynote at #MSBuild 2022Learn how to reload configuration changes made in appsettings.json without restarting website, using Options pattern, specifically, IOptionsSnapshot.
Read MoreReload changes in appsetting.json without website restartAccess and read appsettings.json and custom config files into your Blazor applications. I also explain why we use HttpClient for accessing custom config.
Read MoreHow to access and read config settings into your Blazor appLearn how to implement HTTP PATCH method in C# and ASP.NET Web API using JsonPatch library. The Patch method allows client to send partial updates.
Read MoreHow to implement HTTP PATCH method in ASP.NET REST APII timed-traveled to 1979, and met Bjarne Stroustrup, the inventor of C++, and told him what C++ in the future should be, well, based on what he said today.
Read MoreI time-traveled to 1979 and met with Bjarne StroustrupLearn how to create a REST client single-page app(SPA) in .NET Blazor WASM, which you can use to test a REST API service by allowing you to send HTTP requests.
Read MoreHow to create a REST client single-page app in BlazorImplement a simple Employee database management REST API application in ASP.NET, utilizing design patterns like Repository and Dependency Injection.
Read MoreCreate a simple employee database REST API in ASP.NET Core