• About Me
  • Contact Us
  • Privacy Policy
  • Terms and Conditions
  • Advertise / Sponsor

DOTNET DETAIL

Learn Microsoft .NET Technologies

  • Home
  • Tutorials
    • Angular
      • Angular 5
      • Angular 6
    • ASP.NET Core
    • Azure
    • React
    • Vue
  • Books
  • Courses
  • Cloud Hosting
  • Interview Questions
You are here: Home / Archives for Asp.Net Core 3.0

Role Based Authorization in Asp.Net Core 3.0

November 23, 2019 by mebakar1005 14 Comments

Role Based Authorization in Asp.Net Core 3.0

In this tutorial, we are going to cover a simple example of how to implement Role Based Authorization / access control in Asp.Net Core 3.0 using visual studio 2019. In one of the previous tutorials, we have discussed Asp.Net Core 3.0 web API token based authentication example using JWT. So, now first-of-all, we will create Asp.Net Core 3.0 application, and then we will add identity to our application and then we will register users and then we will see how to create roles and then finally we will see how to authorize pages.

[Read more…]

Filed Under: ASP.NET Core, Authentication and Authorization Tagged With: Asp.Net Core 3.0, Authentication, Authorization, Role Based Authorization

How to use AutoMapper in Asp Net Core 3.0 App

November 13, 2019 by mebakar1005 Leave a Comment

Asp Net Core 3.0 AutoMapper

In this tutorial, we are going to cover Asp.Net Core 3.0 Automapper implementation using a very simple example. Automapper is a very popular Object-to-Object mapping library that can be used to map objects. So, using automapper, we can map one object to another object throughout our application with just a little bit configuration. So, first-of-all, we will create a new Asp.Net Core project in Visual Studio 2019 and then we will install AutoMapper and then we will configure AutoMapper in our project and then we will add model class and a Dto (Data Object Mapper) class and then we will map both (Model class and Dto) and then finally we will see the output.

[Read more…]

Filed Under: ASP.NET Core Tagged With: .NET Core 3.0, Asp.Net Core 3.0, AutoMapper

Asp.Net Core 3.0 Web API Versioning best practices

November 9, 2019 by mebakar1005 2 Comments

asp net core 3.0 web api versioning

In this tutorial, we are going to cover Asp Net Core 3.0 Web API Versioning best practices using Visual Studio 2019. We will see different ways to implement API versioning in Asp.Net Core 3.0 application like URL based versioning, Query string based versioning, and then header based versioning. In one of the previous tutorials, we have discussed how to create web API in Asp.Net Core 3.0 application and then we have also discussed Asp Net Core 3.0 Web API token based authentication using JWT in visual studio 2019. So, let’s see how to implement API Versioning in Asp.Net Core 3.0 web API application.

[Read more…]

Filed Under: ASP.NET Core, web API Tagged With: Asp.Net Core 3.0, WEB API

Entity Framework Core 3.0 Bulk Insert Update and Delete – Asp.Net Core 3.0

October 19, 2019 by mebakar1005 1 Comment

linq entity framework insert multiple records

In this tutorial, we are going to cover Entity Framework Core (EF Core) bulk insert, update and delete options using Asp.Net Core 3.0 in Visual Studio 2019. We will use entity framework core Bulk extension to insert, update and delete multiple records. There are some other solutions to insert, update and delete multiple records in the fastest way, but using Bulk extension is the most significant way to insert, update, and delete multiple records. 

[Read more…]

Filed Under: ASP.NET Core, Entity Framework Tagged With: Asp.Net Core 3.0, Bulk Extensions, EF Core, EF Core 3, Entity Framework Core

Deploy React and Asp Net Core 3 App to Azure using VS2019

October 14, 2019 by mebakar1005 Leave a Comment

deploy react and asp net core 3 app to Azure

In this tutorial, we are going to cover how to deploy React and Asp.Net Core 3 application to Azure using Visual Studio 2019. So, first-of-all, will see how to create Azure App service using Visual Studio 2019, and then we will deploy our application to Azure App Service. In previous tutorial, we have discussed how to deploy React and Asp.Net Core 3.0 application to IIS (Internet Information Service) using Visual Studio 2019. 

[Read more…]

Filed Under: ASP.NET Core, Azure, React Tagged With: Asp.Net Core 3.0, Azure, Azure App Service, Deployment

How to deploy React and Asp.Net Core 3 application to IIS

October 12, 2019 by mebakar1005 Leave a Comment

Deploy Reactjs and Asp.Net Core app to IIS

In this tutorial, we are going to learn how to deploy React and Asp Net Core 3 application to IIS ( Internet Information Service ) manager in step by step. In previous tutorial, we have discussed how to create ReactJs and Asp.Net Core app using Visual Studio 2017. So, first-of-all, we will install .Net Core runtime and then we will see how to enable IIS on windows 10 and then finally we will see how to deploy React and Asp Net Core 3 app to IIS.

[Read more…]

Filed Under: ASP.NET Core, React Tagged With: Asp.Net Core 3.0, IIS, Reactjs

How to Create an Angular 8 and Asp.Net Core 3 app using VS2019

October 8, 2019 by mebakar1005 2 Comments

Angular 8 and Asp.Net Core 3.0 App using Visual Studio 2019

In this tutorial, we are going to cover how to create an Angular 8 and Asp.Net Core 3 app using visual studio 2019. Now, there are many new features added to Angular 8. We can use Angular SPA template with Asp.Net Core 3.0. So, first-of-all, we will install all the dependencies, and then create a new project using Angular SPA template with Asp.Net Core 3.0 in Visual Studio 2019.

[Read more…]

Filed Under: Angular, Angular 5, Angular 6, Angular 7, ASP.NET Core, Visual Studio Tagged With: Angular 8, Asp.Net Core 3.0, Visual Studio 2019

How to add SignalR to Asp.Net Core 3.0 app using Visual Studio 2019

June 3, 2019 by mebakar1005 Leave a Comment

add signalr to asp.net core 3.0

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…]

Filed Under: ASP.NET Core, SignalR Tagged With: .NET CORE, Asp.Net Core 3.0, Hub, SignalR

How to add Facebook login to Asp.Net Core 3.0 app using VS2019

May 31, 2019 by mebakar1005 3 Comments

add facebook login to Asp.Net Core 3 app

In this tutorial, we are going to cover how to add Facebook login to Asp.Net Core 3.0 app using Visual Studio 2019. So, it will enable users to login with their Facebook account in Asp.Net Core 3.0 application. So, first-of-all, we will create an app in Facebook developer account and then we will create a new Asp.Net Core 3.0 application using Visual Studio 2019 and then we will configure the Facebook app with Asp.Net Core 3.0 app and then finally we will see how it works.

[Read more…]

Filed Under: ASP.NET Core, Authentication and Authorization, Security Tagged With: Asp.Net Core 3.0, Authentication, External Login, Facebook, Facebook Login

How to add Authentication to React app using Asp.Net Core 3 in VS2019

May 29, 2019 by mebakar1005 1 Comment

add authentication to react using asp net core 3

In this tutorial, we are going to cover a very simple example on how to add authentication to React app using Asp.Net Core 3 application in visual studio 2019. Asp.Net Core 3 offers authentication in single page application using the support of Asp.Net Core Identity. So, in this tutorial, we will create an React app with authentication using Asp.Net Core 3 and then we will see how it works.

[Read more…]

Filed Under: ASP.NET Core, Authentication and Authorization, React, Security Tagged With: Asp.Net Core 3.0, Authentication, React.js, Visual Studio 2019

  • 1
  • 2
  • Next Page »
Buy me a coffeeBuy me a coffee

Jobs

Dotnet Jobs

Join Us

Join Us

Subscribe to Blog via Email

Enter your email address to subscribe.

Recent Posts

  • Top LINQ interview questions and answers.
  • Difference between .NET Core and .NET Framework
  • Top 10 Programming Languages of the Future.
  • Top MVC Interview Questions & Answers
  • 20 best Data Science Books: Beginner to Advanced Level
  • 10 Best Machine Learning Laptops
Copyright © 2022