ASP.NET Identity and Claims

后端 未结 2 1232
名媛妹妹
名媛妹妹 2021-01-29 22:26

I am trying to move away from WebForms and learn MVC, specifically using the new ASP.NET Identity model. However, I cant seem to find any formal documentation from Microsoft, th

2条回答
  •  走了就别回头了
    2021-01-29 23:11

    Regarding Asp.Net Identity, I would strongly recommend Brock Allen's implementation, called 'Identity Reboot'. Identity Reboot basically is a set of extensions to the ASP.NET Identity. It was inspired due to frustrations with the ASP.NET Identity implementation.

    You can read an introductory article here. You can download source code and samples from github here.

    You can install it using nuget:

    www.nuget.org/packages/BrockAllen.IdentityReboot/
    www.nuget.org/packages/BrockAllen.IdentityReboot.Ef/   (for entity framework)
    

提交回复
热议问题