Skip to content

v1.6.0

Compare
Choose a tag to compare
@thomasduft thomasduft released this 07 May 20:11
· 87 commits to main since this release
a17d7f9
  • 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>();
...