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: 3 months 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 6 years ago)
- Default Branch: publish
- Last Pushed: 2020-06-12T03:42:20.000Z (almost 5 years ago)
- Last Synced: 2025-03-06T04:36:32.113Z (3 months ago)
- Topics: asp-net-core, azure, identity, storage, storage-account
- Language: C#
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- 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);
}
}
```