ElCamino.AspNetCore.Identity.AzureTable - Getting Started docs Icon identityazuretable

This project provides a high performance cloud solution for ASP.NET Identity Core using Azure Table storage replacing the Entity Framework / MSSQL provider.

Getting Started

You will need to setup your development environment to use this solution. This guide assumes you are familiar with using Visual Studio 2017 or later. Development requirements:

Identity Core

NuGet Badge Semantic versioning of this package follows the major release of Microsoft.AspNetCore.Identity. Included in the source are AspNetCore.Mvc Website projects (targeting .NET Core) that are examples of removing the EntityFramework and Identity EntityFramework references and replacing them with the Azure Table storage provider. The source of the sample projects can be found Source Code and the latest walk-throughs can be found here Quick Starts

Identity Core latest template

dotnet new --install ElCamino.AspNetCore.Identity.AzureTable.Templates

#MVC Template
dotnet new mvc-id-azure-tables

#Razor Pages Template
dotnet new rzp-id-azure-tables

Identity Core 3.x (uses PageModel - latest) - Use ElCamino.AspNetCore.Identity.AzureTable, sample mvc app

Identity Core 2.x (uses PageModel - latest) - Use ElCamino.AspNetCore.Identity.AzureTable, sample mvc app

Identity Core 2.x (uses MVC - older) - Use ElCamino.AspNetCore.Identity.AzureTable, sample mvc app

Identity 2.0 (deprecated)

NuGet Badge No new development will happen on this package. The code is archived in branch rel/1.7. However, you should follow the migration plan to upgrade to Identity Core 2.0 with package ElCamino.AspNetCore.Identity.AzureTable. Use this package to target the .NET Framework 4.5 and Microsoft.AspNet.Identity.Core. Included in the source is a MVC 5 Website project (targeting .NET Framework 4.5) that is an example of removing the EntityFramework and Identity EntityFramework references and replacing them with the Azure Table storage provider. The sample project can be found in the source , Sample Mvc Walkthrough and technical overview

Technical Overview

Want more details about what is going on under the hood in plain English and plenty of pictures? Visit Technical Overview