Identity.Dapper

(β˜… 268)

Identity package that uses Dapper instead EntityFramework for use with .NET Core

  • .gitattributes
  • .gitignore
  • .travis.yml
  • Identity.Dapper.sln
  • IdentityTablesMySql.sql
  • IdentityTablesPostgreSql.sql
  • IdentityTablesSqlServer.sql
  • LICENSE
  • README.md
  • TODO.txt

# Installation Guide

1. Get the code
git clone https://github.com/grandchamp/Identity.Dapper

Downloads the entire project code from GitHub to your computer.

cd Identity.Dapper

Moves into the project folder you just downloaded.

2. .NET

Medium Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • .NET SDK The SDK required for the dotnet command.
dotnet user-secrets set DapperIdentity:ConnectionString "Connection string of your database"

Type this command into your terminal and run it.

dotnet user-secrets set DapperIdentity:Password "123"

Type this command into your terminal and run it.

dotnet user-secrets set DapperIdentity:Username "user"

Type this command into your terminal and run it.

dotnet user-secrets set DapperIdentityCryptography:Key "Base64 32 bytes key"

Type this command into your terminal and run it.

dotnet user-secrets set DapperIdentityCryptography:IV "Base64 16 bytes key"

Type this command into your terminal and run it.

βœ… After dotnet run, check the message or address shown in the terminal.

Pulled directly from this repo's README.

// repository documentation