https://github.com/joncloud/aspnet-identity-azure-storageaccount
Implements ASP.NET Core Identity using Azure Storage Account
https://github.com/joncloud/aspnet-identity-azure-storageaccount
asp-net-core azure identity storage storage-account
Last synced: 26 days ago
JSON representation
Implements ASP.NET Core Identity using Azure Storage Account
- Host: GitHub
- URL: https://github.com/joncloud/aspnet-identity-azure-storageaccount
- Owner: joncloud
- License: mit
- Created: 2018-12-10T02:06:34.000Z (over 7 years ago)
- Default Branch: publish
- Last Pushed: 2020-06-12T03:42:20.000Z (about 6 years ago)
- Last Synced: 2025-10-12T07:46:07.627Z (8 months ago)
- Topics: asp-net-core, azure, identity, storage, storage-account
- Language: C#
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Ex.Microsoft.AspNetCore.Identity.AzureStorageAccount
[](https://www.nuget.org/packages/Ex.Microsoft.AspNetCore.Identity.AzureStorageAccount/)
## Description
Ex.Microsoft.AspNetCore.Identity.AzureStorageAccount implements the ability to manage ASP.NET Core Identity using Azure Storage Accounts.
## Licensing
Released under the MIT License. See the [LICENSE][] File for further details.
[license]: LICENSE.md
## Usage
```csharp
public class Startup {
public void ConfigureServices(IServiceCollection services) {
var connectionString = "UseDevelopmentStorage=true"; // Swap out for production connection string
services.AddDefaultIdentity()
.AddRoles()
.AddAzureStorageAccountStores(connectionString);
}
}
```