Create an accordion component with Blazor
In this post, I'm going to explain how to create an accordion component with Blazor WebAssembly or Blazor Server in…
.NET (dotnet) is a developer platform made up of tools, programming languages, and libraries for building many different types of applications.
So, there are various implementations of .NET (dotnet). Each implementation allows .NET code to execute in different places—Linux, macOS, Windows, iOS, Android, and many more. This framework has two main versions:
Then, Xamarin/Mono is a .NET (dotnet) implementation for running apps on all the major mobile operating systems, including iOS and Android.
The .NET Standard is a formal specification of the APIs that are common across .NET implementations. This allows the same code and libraries to run on different implementations.
Therefore, the two major components of .NET (dotnet) Framework are the Common Language Runtime and the .NET Framework Class Library.
Summarize, .NET (dotnet) applications are written in the C#, F#, or Visual Basic programming language. Code is compiled into a language-agnostic Common Intermediate Language (CIL). Compiled code is stored in assemblies—files with a .dll or .exe file extension.
At the end, when an app runs, the CLR takes the assembly and uses a just-in-time compiler (JIT) to turn it into machine code that can execute on the specific architecture of the computer it is running on.
In this post, I'm going to explain how to create an accordion component with Blazor WebAssembly or Blazor Server in…
I'm going to explain how using biometric identification in Xamarin Forms to simplify authentication before executing certain important actions
In this new short post, I'll show you how to create a universal PredicateBuilder for Expression in C# to merge…
In this new post, I explain how to configure IdentityServer for Xamarin Forms to integrate Web Authenticator using Xamarin Essentials
Microsoft is talking a lot about this new technology and here I will explain how to install MAUI with Visual…
I want to start to use Visual Studio 2022 Preview and create a base Xamarin Forms project integrated with IdentityServer
Create a Blazor component for Quill allows us to easily consume Quill and place multiple instances of it on a…
In this new post, I’m going to show how to export data to Excel in...
First part of a Blazor article series to tell how to create a reusable Blazor component that will be used…
In this post, I explain how to implement a Modal Dialog component for Blazor WebAssembly that we can use everywhere…
I want to create a Tooltip component for Blazor WebAssembly, taking advantage of Blazor's new CSS isolation feature. Click on…
In this post I want to show how to use LocalStorage with Blazor WebAssembly to save data in the storage…
I can't find the component I need, so, I have created one and now I'm going to give you the…
Today, we are going to learn how to create a secure connection in Blazor using...
I'm going to explain how to secure a Blazor WebAssemble application with IdentityServer4. Also, how to secure API calls
Welcome to Working with Blazor’s component model” post! In this new post I’ll build a...
Setting up a Blazor WebAssembly application creates a new solution for a simple project to explore components and interactions with…
Getting started with C# and Blazor explains how this new Microsoft technology is working and the basic information to understand…
In this post will be on improving on the application's behaviour following clean architecture handling errors, adding logging, authenticating users
I want to show you how adding an UI built in Blazor using the API we have created in the…
In testing the application code I'm going to be showing you how we can effectively test the different parts we've…
Adding an API using ASP.NET Core is the subject of this new post related to explain how to implement a…
I want to explain how architecting ASP.NET Core applications for enterprise projects based on clean architecture principles
I'm going to explain how setting up the application for ASP.NET Core with clean architecture from a blank project to…
Introducing CQRS (Command and Query Responsibility Segregation) for a clean architecture project in ASP.NET Core. A brief guide with source…