• 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

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

Entity Framework Core & Stored Procedure using Fluent API

October 2, 2019 by mebakar1005 1 Comment

entity framework core & stored procedure using fluent API

In this tutorial, we are going to cover crud operations (create, read, update, and delete) using entity framework core & stored procedure with Fluent API. So, first-of-all, we will add a model class in our project and create a database using migrations and then we will create stored procedures for insert, update and delete using Fluent API. Then we will perform insert, update and delete operations using entity framework core.

[Read more…]

Filed Under: ASP.NET Core, Entity Framework Tagged With: Entity Framework Core, Stored Procedure

Define one to many relationship in Entity Framework Code First

September 28, 2019 by mebakar1005 Leave a Comment

define one to many relationship in entity framework code first

In this tutorial, we are going to learn how to define one to many relationship in entity framework code first approach between two entities (domain classes) using entity framework 6. First-of-all, we will create two entities (domain classes) Employee.cs and Company.cs and then we will see different types to define a relation between two entities using by following conventions and then we will define by using fluent API configurations.

[Read more…]

Filed Under: ASP.NET Core, Entity Framework Tagged With: ENTITY FRAMEWORK, Entity Framework Core, One-to-Many, Relationship

How to create a .NET Core 3.0 trimmed self-contained single executable app using VS Code

July 20, 2019 by mebakar1005 Leave a Comment

.net core 3.0 trimmed self-contained single executable app

In this tutorial, we are going to learn how to create a Asp.NET Core 3.0 trimmed self-contained app using visual studio code. In this way we can share our application without installing .NET SDK on the target machine. So, first-of-all, we will create an Asp.Net Core 3.0 app, then we will publish it as self-contained app and then we will see how to reduce the files using PublishSingleFile flag and then we will see how to reduce the size of executable using PublishTrimmed flag which is a new feature of .NET Core 3.0 Preview 6.

[Read more…]

Filed Under: ASP.NET Core, web API Tagged With: .NET Core 3.0, Deployment, PublishSingleFile, PublishTrimmed, Self-Contained

Continuous Integration and Continuous Deployment in DevOps using Visual Studio 2019

June 5, 2019 by mebakar1005 Leave a Comment

Continuous integration and deployment in DevOps

In this tutorial, we are going to cover a simple example of continuous integration and deployment in devops using Visual Studio 2019. It provides us a great help for creating a better project with a lower maintenance cost and higher customer satisfaction. This is very important for every application. So, first-of-all, we will see how to create a project in Azure DevOps, then we will see how to create a new Git repository and clone it locally, and then we will see how to integrate it with Visual Studio 2019, and then we will see how to create a commit using Visual Studio 2019, and then we will see how to create a new branch, and then we will see how to merge changes and resolve conflicts, and then finally we will see how to build pipeline.

[Read more…]

Filed Under: ASP.NET Core, Azure, Visual Studio Tagged With: Azure, CD, CI, Continuous Deployment, Continuous Integration, DevOps, 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

How to add Authentication to Angular 7 and Asp.Net Core 3 using VS2019

May 28, 2019 by mebakar1005 1 Comment

Authentication to Angular 7 app using asp net core 3

In this tutorial, we are going to cover a very simple example on how to add authentication to Angular 7 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 Angular 7 app with authentication using Asp.Net Core 3 and then we will see how it works.

[Read more…]

Filed Under: Angular, Angular 5, Angular 6, Angular 7, ASP.NET Core, Authentication and Authorization, Security Tagged With: Angular 7, ASP.NET CORE 3, Authentication, Identity, JWT

How to add NSwag to Asp Net Core 3.0 web API and generate client code using NSwagStudio

May 23, 2019 by mebakar1005 Leave a Comment

nswag to asp net core 3.0 web api and generate client code

In this tutorial, we are going to cover how to add NSwag to Asp Net Core 3.0 web API using Visual Studio 2019 preview. NSwag is a Swagger/OpenAPI 2.0 and 3.0 API toolchain for .NET Core, .NET, Web API, TypeScript, Angular, and other platforms which is written in c#. The swagger specification uses JSON and JSON schema to describe a RESTful web API. The NSwag project provides tools to generate swagger specifications from existing Asp.Net web API controllers and client code from these swagger specifications.

[Read more…]

Filed Under: ASP.NET Core, Visual Studio, web API Tagged With: ASP.NET CORE, Asp.Net Core 3.0, NSWAG, NSWAG STUDIO, WEB API

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