Identity package that uses Dapper instead EntityFramework for use with .NET Core
https://github.com/grandchamp/Identity.Dapper
grandchamp/Identity.Dapper
Identity package that uses Dapper instead EntityFramework for use with .NET Core - grandchamp/Identity.Dapper
github.com
Using Guid as Entity key
Specify the
services.AddIdentity<DapperIdentityUser<Guid>, DapperIdentityRole<Guid>>() .AddDapperIdentityFor<T, Guid>();
Changing the default schema (SqlServer)
Pass a custom class that inherits from SqlServerConfiguration (or other)
public class CustomSqlServerConfiguration : SqlServerConfiguration { public CustomSqlServerConfiguration() { base.SchemaName = "[customSchema]"; } }
And add it with
services.AddDapperIdentityFor<CustomSqlServerConfiguration>()
* 단축키는 한글/영문 대소문자로 이용 가능하며, 티스토리 기본 도메인에서만 동작합니다.