• 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

CQRS and Mediator Patterns in Asp.Net Core 3.1

May 3, 2020 by mebakar1005 Leave a Comment

CQRS and Mediator Patterns in Asp.Net Core 3.1

In this tutorial, we are going to cover the CQRS(Command Query Responsibility Segregation) pattern in Asp.Net Core 3.1 web api application. We will see how to implement CQRS in a very basic CRUD application using the MediatR library. MediatR library is an open source implementation of mediator pattern for .NET Applications. 

[Read more…]

Filed Under: ASP.NET Core, patterns, React, web API Tagged With: Asp.Net Core 3.1, Mediator, WEB API

How to integrate React and Asp.Net Core 3.1 app using VS Code

March 23, 2020 by mebakar1005 5 Comments

Integrate react and asp.net core 3.1

In this tutorial, we are going to cover how to integrate React with Asp.Net Core 3.1 using Entity Framework Core in visual studio code. We will use SQLite database in this project. So, first-of-all, we will install all the dependencies that we need in this project and then we will see how to setup a project using React and Asp.Net Core 3.1 and Entity Framework Core. 

[Read more…]

Filed Under: ASP.NET Core, React Tagged With: .NET Core 3.1, Asp.Net Core 3.1, Entity Framework Core, React

How to integrate Vue and Asp.Net Core 3.1 app using VS Code

January 30, 2020 by mebakar1005 Leave a Comment

Integrate vue and asp.net core 3.1

In this tutorial, we are going to cover how to integrate Vue.js and Asp.Net Core 3.1 application using Entity Framework Core in Visual Studio Code. We will use PostgreSql database in this tutorial. So, we are going to build a SPA (Single Page Application). 

[Read more…]

Filed Under: ASP.NET Core, Entity Framework, Vue Tagged With: .NET Core 3.1, Asp.Net Core 3.1, Entity Framework Core, PostgreSQL, Vue

Document Viewer in Asp.Net Core 3.0 Application

November 24, 2019 by mebakar1005 Leave a Comment

Document Viewer in Asp.Net Core 3.0

In this tutorial, we are going to cover how to implement Document Viewer in Asp.Net Core 3.0 application using visual studio 2019. There are many file viewer libraries for .NET Framework. But now in this tutorial, we will use GroupDocs.Viewer to preview files in different formats like pdf, docs, excel, power point, outlook, visio, and many others in Asp.Net Core 3.0 application. And if you want to read more features about GroupDocc.Viewer, then you can read here.

[Read more…]

Filed Under: ASP.NET Core Tagged With: Document Viewer

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

  • « Previous Page
  • 1
  • 2
  • 3
  • 4
  • …
  • 7
  • 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

  • Realmente Hace Él En absoluto como yo ?
  • Fiscal Planning — What You Need to Know
  • Organization Strategies for Good Business Success
  • Contemporary Business The usage
  • Deciding on a Document Management Program
  • Most Popular Dating Apps For Black Gay – Remanufactured Online Hookup for Gays
Copyright © 2022