Database Connection Resiliency in Entity Framework Core
How to implement database connection resiliency using an inbuilt or custom execution strategy using Entity Framework Core
.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.
How to implement database connection resiliency using an inbuilt or custom execution strategy using Entity Framework Core
In the last couple of weeks, I was talking about Entity Framework Core for creating a model or call stored…
I want to run more than one Azure Function at the same time but each of them on a different…
Working on the user interface is frustrating but from today you have a new Microsoft tool called Web Live Preview…
In this post I explain how to create email buttons with just HTML and CSS....
I'm facing a problem when I want to cast a base class to a derive class. A derive class is…
Source Generators in C# 9 will allow compiler-extensions to inspect code and then inject additional source code at compile-time
Source generators is a new feature of C# 9 that enables compile-time metaprogramming and generating additional source file.
PostSharp.Community.Packer is a free and open-source tool that you can use to pack your .NET Framework application into a single…
With Entity Framework Core you are able creating a model from the database and also calling a stored procedure.
In this article we are going to describe how to hide Google’s reCaptcha v3 badge. To get started, let’s answer…
Creating entity & context model automatically in C# for an existing database is called Database-First approach with Entity Framework Core
Connect your C# application with Xero OAuth 2.0 is not really simple. Here how getting the list of organization from…
In this new post I explain the procedure for getting an invoice list from Xero in your C# applications with…
How to retrieve #key, #secret, certificate from #Azure #KeyVault in C#? A step by step guide to configure your Azure…
How integrate Xero in your C# application? This is my guide step by step after spending more than one week…
Uno Platform announced today that it now supports macOS as a target platform. This new...
You can set up Swagger UI in your Azure Function API to allow for providing documentation for your serverless API…
How to implement dependency injection in Azure Functions and read the configuration from a local file or from the Azure…
In this post I like to analyse how to return multiple output in Azure Functions...
In this blog I have some posts about F# because this language seems to be interesting and is becoming popular…
In a company prospective, what digital transformation is about? In this post I explain my point of view
How to create an Azure Function in C# Script using as input and output a message from and to Service…
Installing these templates will add a bunch of new options to dotnet new for both C# and F#
How to create a solution and a project for Azure Functions in F# with Visual Studio 2019