Posts tagged "ASP.NET Core"

Published: April 19 2023

.NET 7.0 + MySQL - Connect to MySQL Database with Dapper in C# and ASP.NET Core

How to connect to a MySQL database with C# in ASP.NET Core using Dapper and ADO.NET
Published: April 17 2023

MySQL + Dapper - Create database if it doesn't exist on startup with C# and ASP.NET Core

How to auto create a database and tables in MySQL with C#, ASP.NET Core and the Dapper ORM
Published: April 14 2023

.NET 7.0 + Dapper + MySQL - CRUD API Tutorial in ASP.NET Core

How to build a .NET 7.0 CRUD API with Dapper and a MySQL database.
Published: April 05 2023

Postgres CRUD Operations in C# with Dapper Repository

How to perform CRUD operations on a PostgreSQL database in C# with a Dapper Repository
Published: April 04 2023

.NET 7.0 + C# - JWT Authentication Tutorial without ASP.NET Core Identity

Custom JWT authentication without Identity in ASP.NET Core and C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published: March 28 2023

.NET 7.0 + Postgres - Connect to PostgreSQL Database with Dapper in C# and ASP.NET Core

How to connect to a PostgreSQL database with C# in ASP.NET Core using Dapper and ADO.NET
Published: March 27 2023

Postgres + Dapper - Create database if it doesn't exist on startup with C# and ASP.NET Core

How to auto create a database and tables in PostgreSQL with C#, ASP.NET Core and the Dapper ORM
Published: March 23 2023
Last updated: April 13 2023

.NET 7.0 + Dapper + PostgreSQL - CRUD API Tutorial in ASP.NET Core

How to build a .NET 7.0 CRUD API with Dapper and a PostgreSQL database.
Published: February 15 2023

SqlClient.SqlException - The certificate chain was issued by an authority that is not trusted

How to fix this SSL connection error when connecting to SQL Server from ASP.NET Core
Published: February 15 2023

.NET 7.0 + Dapper - Connect to MS SQL Server Database in ASP.NET Core

How to connect to a SQL Server database in ASP.NET Core with Dapper and ADO.NET
Published: February 14 2023
Last updated: April 13 2023

.NET 7.0 + Dapper + MS SQL Server - CRUD API Tutorial in ASP.NET Core

How to build a .NET 7.0 CRUD API with Dapper and a SQL Server database.
Published: February 14 2023

Dapper + SQL Server - Create database if it doesn't exist on startup in ASP.NET Core

How to auto create a database and tables in SQL Server with ASP.NET Core and Dapper
Published: February 13 2023

.NET 7.0 + Dapper - Connect to SQLite Database in ASP.NET Core

How to connect to a SQLite database in ASP.NET Core with Dapper and ADO.NET
Published: February 10 2023
Last updated: April 13 2023

.NET 7.0 + Dapper + SQLite - CRUD API Tutorial in ASP.NET Core

How to build a .NET 7.0 CRUD API with Dapper and a SQLite database.
Published: February 10 2023

C# + .NET 7.0 - Serialize (Convert) Enum to String in API Response

How to convert enum properties to strings in ASP.NET Core API responses.
Published: February 10 2023

.NET 7.0 + Dapper - Create Database Tables on Startup in ASP.NET Core

How to auto create database tables on startup in ASP.NET Core with Dapper
Published: January 18 2023

.NET 7.0 - Facebook Authentication API Tutorial with Example

Tutorial on how to build a .NET 7.0 API that supports Facebook Authentication.
Published: November 28 2022
Last updated: January 05 2023

.NET 6.0 - Apply Authorize Attribute to All Controllers

How to quickly apply the Authorize Attribute to all controllers by default in .NET 6.0
Published: November 22 2022

.NET 6.0 - Connect to InMemory Database with Entity Framework Core

This post shows how to connect a .NET 6 API to an InMemory database for testing with Entity Framework Core.
Published: September 05 2022

.NET 6.0 - Connect to SQLite Database with Entity Framework Core

This post shows goes through the steps to connect a .NET 6 API to SQLite using Entity Framework Core, and automatically create/update the SQLite database from code using EF Core migrations.
Published: June 23 2022

.NET 6.0 - Connect to PostgreSQL Database with Entity Framework Core

This post shows goes through the steps to connect a .NET 6 API to PostgreSQL using Entity Framework Core, and automatically create/update the PostgreSQL database from code using EF Core migrations.
Published: March 25 2022

.NET 6.0 - Connect to MySQL Database with Entity Framework Core

This post shows goes through the steps to connect a .NET 6 API to MySQL using Entity Framework Core, and automatically create/update the MySQL database from code using EF Core migrations.
Published: March 18 2022

.NET 6.0 - Connect to SQL Server with Entity Framework Core

This post shows goes through the steps to connect a .NET 6 API to SQL Server using Entity Framework Core, and automatically create/update the SQL Server database from code using EF Core migrations.
Published: March 15 2022

.NET 6.0 - CRUD API Example and Tutorial

Tutorial on how to build a .NET 6.0 API that supports CRUD operations.
Published: March 11 2022

.NET 6.0 - Send an Email via SMTP with MailKit

This is a quick example of how to send an email in .NET 6.0 using the MailKit email client library.
Published: February 26 2022

.NET 6.0 - Boilerplate API Tutorial with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate .NET 6.0 API that supports email sign up, verification, authentication, role based access control, forgot password, reset password and account management (CRUD) functionality.
Published: February 18 2022

.NET 6.0 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in .NET 6.0 & C#. Includes example client apps built with Angular, React and Vue.
Published: February 04 2022

.NET 6.0 - Minimal API Tutorial and Example

A step by step tutorial on how to build a minimal .NET 6.0 API from scratch with a couple of example endpoints/routes, with details on every line of code and configuration to show how it all fits together.
Published: January 07 2022

.NET 6.0 - User Registration and Login Tutorial with Example API

How to build a .NET 6.0 API that supports user registration, login with JWT authentication and CRUD operations. Includes example client apps built with Angular, Blazor, React & Vue.
Published: December 20 2021

.NET 6.0 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in .NET 6.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published: December 14 2021

.NET 6.0 - JWT Authentication Tutorial with Example API

How to implement custom JWT authentication in .NET 6.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published: December 07 2021

.NET - Create and Run a Simple 'Hello World' Web App

With the .NET CLI you can create a new project with the dotnet new <TEMPLATE> command, where the TEMPLATE is the type of application you want to create.
Published: October 26 2021

.NET 5.0 - Connect to MySQL Database with Entity Framework Core

In this post we'll go through the steps to connect a .NET API to MySQL using Entity Framework Core, and to create a MySQL database from code using EF Core migrations.
Published: October 21 2021

.NET 5.0 - Connect to SQL Server with Entity Framework Core

In this post we'll go through the steps to connect a .NET API to SQL Server using Entity Framework Core, and to create a SQL Server database from code using EF Core migrations.
Published: October 12 2021

.NET - Return Enum as String from API

This is a quick post to show how to serialize enum values as strings so enum values are returned in API responses instead of the enum indexes.
Published: October 01 2021

.NET - Startup Class in a Nutshell

The Startup class configures the services available to the .NET Dependency Injection (DI) container in the ConfigureServices() method, and configures the .NET request pipeline for the application in the Configure() method.
Published: September 30 2021

.NET - Program Class and Main Method in a Nutshell

The Main method is the entry point for a .NET application, when an app is started it searches for the Main method to begin execution. The method can be located anywhere in a project but is typically placed in the Program class.
Published: September 29 2021

.NET + MSBuild - C# Project File (.csproj) in a Nutshell

A .NET project file is an XML document containing MSBuild code that executes when you run the dotnet build command
Published: September 28 2021

.NET 5.0 - CRUD API Example and Tutorial

Tutorial on how to build a .NET 5.0 API that supports CRUD operations.
Published: September 02 2021

.NET 5.0 - Send an Email via SMTP with MailKit

This is a quick example of how to send an email in .NET 5.0 using the MailKit email client library.
Published: September 01 2021

.NET 5.0 - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate .NET 5.0 API that supports email sign up, verification, authentication, role based access control, forgot password, reset password and account management (CRUD) functionality.
Published: July 29 2021

.NET 5.0 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in .NET 5.0 & C#. Includes example client apps built with Angular, React and Vue.
Published: July 18 2021

.NET 5.0 - Bare Bones API Tutorial

A step by step tutorial on how to build a simple bare bones .NET 5.0 API from scratch with a couple of example endpoints/routes, with details on every line of code and configuration to show how it all fits together.
Published: May 25 2021
Last updated: January 07 2022

.NET 5.0 - Simple API for Authentication, Registration and User Management

This tutorial shows how to build a .NET 5.0 API that supports user registration, login with JWT authentication and user CRUD operations. Includes example client apps built with Angular, Blazor, React & Vue.
Published: May 19 2021

.NET 5.0 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in .NET 5.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published: May 10 2021
Last updated: June 14 2021

.NET Core 3.1 + AWS Lambda - Deploy a .NET Core API and SQL Server DB to Lambda and RDS

How to setup an AWS environment from scratch and deploy a .NET Core 3.1 API to AWS Lambda that connects to a SQL Server database running on AWS RDS (Relational Database Service) and sends email using AWS SES (Amazon Simple Email Service).
Published: April 30 2021

.NET 5.0 - JWT Authentication Tutorial with Example API

How to implement custom JWT authentication in .NET 5.0 with C#. Includes example client apps built with Angular, React, Vue & Blazor.
Published: November 28 2020

.NET Core C# + AWS SES - Send Email via SMTP with AWS Simple Email Service

In this tutorial we'll go through the steps to enable sending email via SMTP from a .NET Core API using the Amazon Simple Email Service.
Published: November 18 2020

Blazor WebAssembly - Fake Backend Example for Backendless Development

An example of backendless development with Blazor WebAssembly using an HTTP Client Handler, includes "pass through" to real backend for unmocked URLs.
Published: November 09 2020

Blazor WebAssembly - User Registration and Login Example & Tutorial

In this tutorial we'll go through an example of how to build a simple user registration, login and user management (CRUD) application with Blazor WebAssembly.
Published: October 02 2020

ASP.NET Core 3.1 - Global Error Handler Tutorial

This is a quick post to show how to implement a global exception handler in ASP.NET Core 3.1
Published: September 27 2020

Blazor WebAssembly - Authentication Without Identity

This is a quick post to show how to implement custom authentication in ASP.NET Core Blazor without the Identity membership system.
Published: September 20 2020

Blazor WebAssembly - HTTP GET Request Examples

A quick set of examples to show how to send HTTP GET requests from Blazor WebAssembly to a backend API using the HttpClient
Published: September 16 2020

Blazor WebAssembly - HTTP POST Request Examples

A quick set of examples to show how to send HTTP POST requests from Blazor WebAssembly to a backend API using the HttpClient
Published: September 15 2020

Blazor WebAssembly - Display a list of items

This is a quick example to show how to display a list of items in Blazor WebAssembly.
Published: September 10 2020

Blazor WebAssembly - Basic HTTP Authentication Tutorial & Example

A Custom Basic HTTP Authentication Example built with ASP.NET Core Blazor WebAssembly
Published: August 13 2020

Blazor WebAssembly - JWT Authentication Example & Tutorial

A Custom JWT Authentication Example built with ASP.NET Core Blazor WebAssembly.
Published: August 09 2020

Blazor WebAssembly - Get Query String Parameters with Navigation Manager

This is a quick post to show how you can add a couple of simple extension methods to the NavigationManager class in your Blazor WebAssembly app for accessing query string parameters in the URL.
Published: July 31 2020

Blazor WebAssembly - Form Validation Example

This is a quick example of how to setup form validation in ASP.NET Core Blazor WebAssembly. The example is a simple registration form with pretty standard fields for title, first name, last name, date of birth, email, password, confirm password and an accept terms and conditions checkbox.
Published: July 30 2020

ASP.NET Core Blazor WebAssembly - Communication Between Components

This is a quick tutorial to show how you can send messages between components in a Blazor WebAssembly (WASM) application.
Published: July 21 2020

ASP.NET Core 3.1 - Create and Validate JWT Tokens + Use Custom JWT Middleware

This is a quick example of how to create and validate JWT tokens in ASP.NET Core 3.1. We also cover how to implement custom JWT authentication with custom JWT middleware and a custom authorize attribute.
Published: July 16 2020

ASP.NET Core 3.1 - Hash and Verify Passwords with BCrypt

A quick example of how to hash and verify passwords ASP.NET Core 3.1 using the BCrypt.Net-Next password hashing library which is a C# implementation of the bcrypt password hashing function.
Published: July 15 2020
Last updated: October 17 2020

ASP.NET Core 3.1 - Send Emails via SMTP with MailKit

This is a quick example of how to send an email in ASP.NET Core 3.1 using the MailKit email client library.
Published: July 06 2020
Last updated: May 10 2021

ASP.NET Core 3.1 - Boilerplate API with Email Sign Up, Verification, Authentication & Forgot Password

How to build a boilerplate authentication API with ASP.NET Core 3.1 that includes email sign up & verification, authentication & role based authorization, forgot password & reset password functionality, account management (CRUD) routes with role based access control, and Swagger documentation.
Published: May 26 2020

ASP.NET Core - Setup Development Environment

A quick post to show how to setup an ASP.NET Core development machine.
Published: May 25 2020

ASP.NET Core 3.1 API - JWT Authentication with Refresh Tokens

How to implement JWT authentication with refresh tokens in an ASP.NET Core 3.1 API. Includes example client app built with Angular.
Published: May 20 2020

ASP.NET Core API - Allow CORS requests from any origin and with credentials

This is a quick post to show how to configure an ASP.NET Core API to allow CORS requests from any origin as well as with credentials.
Published: January 11 2020

Vue.js + ASP.NET Core on Azure with SQL Server - How to Deploy a Full Stack App to Microsoft Azure

In this deployment tutorial we're going to setup a new production ready Windows 2019 web server on Microsoft Azure with IIS (Internet Information Services), then deploy a full stack Vue.js + ASP.NET Core + SQL Server application to it that supports user registration and JWT authentication.
Published: January 10 2020

React + ASP.NET Core on Azure with SQL Server - How to Deploy a Full Stack App to Microsoft Azure

In this deployment tutorial we're going to setup a production ready Windows + IIS server from scratch on Microsoft Azure, then deploy a full stack React + ASP.NET Core + SQL Server application to it that supports user registration and JWT authentication.
Published: January 08 2020
Last updated: January 20 2020

Angular + .NET Core + SQL on Azure - How to Deploy a Full Stack App to Microsoft Azure

In this deployment tutorial we're going to setup a production ready web server from scratch on Microsoft Azure running Windows Server and IIS, then deploy a full stack Angular + ASP.NET Core + SQL Server application to it that supports user registration and authentication.
Published: January 03 2020
Last updated: June 04 2020

ASP.NET Core - EF Core Migrations for Multiple Databases (SQLite and SQL Server)

An example of how to setup an ASP.NET Core project with EF Core Migrations that support multiple different database providers.
Published: December 27 2019

ASP.NET Core - Automatic EF Core Migrations to SQL Database on Startup

This is a super quick example of how to automatically migrate database changes from code in ASP.NET Core using Entity Framework Core from the Startup.cs file.
Published: October 21 2019
Last updated: September 10 2020

ASP.NET Core 3.1 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in ASP.NET Core 3.1 with C#. Includes example client apps built with Angular, React and Vue.js.
Published: October 16 2019
Last updated: December 13 2019

ASP.NET Core 3.1 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in ASP.NET Core 3.1 & C#. Includes example client apps built with Angular, React and Vue.
Published: October 14 2019
Last updated: June 04 2020

ASP.NET Core 3.1 - Simple API for Authentication, Registration and User Management

Simple boilerplate ASP.NET Core 3.1 API that supports User Registration, Login and User Management. Uses SQLite in development & SQL Server in production and includes example client apps built with React, Angular & Vue.
Published: October 11 2019
Last updated: August 13 2020

ASP.NET Core 3.1 - JWT Authentication Tutorial with Example API

How to implement custom JWT authentication in ASP.NET Core 3.1 with C#. Includes example client apps built with React, Angular & Vue.
Published: January 08 2019

ASP.NET Core 2.2 - Role Based Authorization Tutorial with Example API

How to build an API with role based authorization / access control in ASP.NET Core 2.2 & C#. Includes example client apps built with Angular, React and Vue.
Published: October 17 2018

C# - Pure Pagination Logic in C# / ASP.NET

Pure pagination logic written in C# / ASP.NET and available on NuGet. Compatible with ASP.NET Core and ASP.NET Standard projects.
Published: October 15 2018

ASP.NET Core Razor Pages - Pagination Example

An example of how to add pagination to your ASP.NET Core 2.1 Razor Pages application.
Published: September 08 2018
Last updated: January 18 2019

ASP.NET Core 2.2 - Basic Authentication Tutorial with Example API

How to implement Basic HTTP Authentication in ASP.NET Core 2.2 with C#. Includes example client apps built with Angular, React and Vue.js.
Published: August 14 2018
Last updated: January 08 2019

ASP.NET Core 2.2 - JWT Authentication Tutorial with Example API

How to implement JWT authentication in ASP.NET Core 2.2 with C#. Includes example client apps built with React, Angular & Vue.
Published: June 26 2018
Last updated: January 14 2019

ASP.NET Core 2.2 - Simple API for Authentication, Registration and User Management

A clean and simple custom ASP.NET Core API for User Registration, Login with JWT Authentication and User Management.
Supported by