v1.6.0
- thanks to @FairlieAgile
- allows to to register a custom key type for
IdentityUser<TKey>
An example project using INT as the primary key is included in the samples/ServerWithCustomKey project.
...
.AddUIIdentityStore<ApplicationUser, int>(options =>
{
...
})
// Register the APIs for the EF based UI Store based on ASP.NET Identity.
.AddUIIdentityApis<ApplicationUser, int>();
...