In this tutorial, we are going to cover the difference between .NET Core and .NET Framework. .NET framework is a software development framework that is designed and developed, and maintained by Microsoft. In 2002, the first version of the .net framework 1.0 was introduced. It is windows based framework and primarily runs on Windows devices. It is used to develop desktop applications, web-based applications, and web services. There are different programming languages are available on the .net framework like vb.net, c#, and etc. It supports more than 60 programming languages.
[Read more…]Key Vault secrets in Asp.Net Core 3.1
In this tutorial, we are going to discuss Azure Key Vault secrets using Asp.Net Core 3.1 web application. Azure Key Vault is a tool where we can store and access secrets. The purpose of Key Vault is to store sensitive information like API keys, Authenticated Token Keys, Database Connection strings and etc. This is the best cloud-based solution for Azure web Apps.
[Read more…]How to add SignalR to Asp.Net Core 3.0 app using Visual Studio 2019
In this tutorial, we are going to cover how to add signalr to Asp.Net Core 3.0 app using Visual Studio 2019. Signalr is basically an open source library that helps us to create real time web applications like voting system applications, gaming applications, dashboard monitoring systems, chat applications, social networks, travel alerts, notification alerts and etc.
[Read more…]ASP.NET Core Interview Questions
In this tutorial, we are going to cover ASP.NET Core Interview Questions and Answers for beginners and experts. These interview questions will help you to prepare for the interviews from basics to advance. These interview questions will also help you to enhance your technical skills.
[Read more…]How to Create web API using dot net core with entity framework
In this tutorial, we will learn how to create web api in asp net core using Entity Framework Core. ASP.NET Core is a lightweight runtime library. It is a cross-platform that can run on Windows, Linux, and Mac. [Read more…]
How to sort record using Angular 6 and ASP.NET Core 2.0
In this tutorial, we will discuss how to sort record using Angular 6 and ASP.NET Core. We will create generic logic using Dictionary for sorting the record. There are lots of other techniques or third-party tools like ng2-table, ngx-data table and others. But we will create our own logic. [Read more…]
Action Results in ASP.NET Core 2.0
In this tutorial, we will take a look at Action Results in ASP.NET Core like what are Action results? What are the different types of the Action Results that are available? And also we will look at how to create a formatted response from the action method. [Read more…]
Tag Helpers in ASP.NET Core 2.0
In this tutorial, we will take a look at Tag Helpers in ASP.NET Core like what are Tag helpers? difference between Tag helpers and other helpers, and how to use Tag Helpers in ASP.NET Core Application. So, Tag helpers are introduced in ASP.NET Core. They are similar to HTML helpers which help us to render HTML. [Read more…]
Attribute-based Routing in ASP.NET Core
In the previous tutorial, I have discussed what is Routing in ASP.NET Core? and how Routing Engine works in ASP.NET? and how to add custom routing in ASP.NET Core 2.0 Application. But now in this tutorial, we will discuss Attribute routing. [Read more…]
Routing in ASP.NET Core 2.0 Application
Now, in this ASP.NET Core tutorial, I will discuss Routing in ASP.NET Core. Routing basically a concept about how to send HTTP request to the right controller. If we say simply, Routing is a process of mapping a URL (Uniform Resource Locator) request to a specific controller action. Routing plays a vital role in the execution flow of ASP.NET Core application. [Read more…]