What is .NET Core?

What is .NET Core?

We were receiving a lot of requests to briefly describe and cover the topic of .NET Core. We can understand that it bit generic and a big topic to cover but we have tried our best to provide the best about what is .NET Core in this post. Agenda: Let's have a look at the agenda, in this post we will learn and try to give the precise answers of What is .NET core?Where can we develop applications using .NET core?What can we develop with the .NET core?Features of .NET core.Language SupportPackage managementCommunity What is .NET Core? .NET core is…
Read More
I don’t need postman anymore! I use VS Code Instead

I don’t need postman anymore! I use VS Code Instead

We all use postman to send and test http requests. While coding at the same time we test the requests that we code. In the meantime to test our request or APIs we open post and switch between both of the Applications, postman and VS Code that is a separate headache. The new Postman update is very slow to load with complex user interface. It use a lot of ram as well that can slow the speed of pc and our productivity got hurt. So I have a solution for you guys. You don’t have to switch between postman and…
Read More
What is .NET Core vs .NET Framework

What is .NET Core vs .NET Framework

What is .net core vs .net framework. The first launch of .NET Framework was in 2002, and over the years, it grew a huge set of APIs. On the other hand, .NET Core was introduced in 2016. Short Intro: The .Net Framework is an immense and mature development platform to create Windows desktop, web, mobile, games, and IoT applications. .NET Core, on the other hand, is an open-source .NET platform that allows you to build cross-platform applications; So your apps can run on Windows, Linux, and Mac OS. We had the option to gain from the .NET Framework experience and…
Read More
How to Send Emails ASP.NET Core 5 Using SMTP

How to Send Emails ASP.NET Core 5 Using SMTP

In this tutorial, we will learn How to Send Emails ASP.NET core 5 Web API Application using SMTP. If you want to set up a new ASP.NET Core Multi-tier Project click on this link and if want to configure Identity click on this. What is SMTP: SMTP is a "Simple mail transfer protocol" that allows applications to send emails. Like Gmail, office365, live, etc. Tools: Visual Studio Community 2019 Windows OS Create A Email Template Class that will hold the data that we want to send our user. public class EmailTemplate { public string From { get; set; } public…
Read More
Login and Registration Using Identity In ASP.NET Core

Login and Registration Using Identity In ASP.NET Core

In one of the previous tutorials, we have created our project and configured Identity using Entity Framework Core. Now we will create RESTful APIs to perform Login and Registration Using Identity In ASP.NET Core. If you have not implemented Identity Read my previous tutorial to implement it by clicking on the above-attached link. It seems difficult but believe me it’s pretty simple.  Just follow my instructions and practice the code with me. First of all, we have to write services to perform signup/registration, login/sign in, and logout then we will call these services from our controller. I have added a…
Read More