在asp.net核心中使用IUser <tkey>

时间:2016-10-03 02:24:18

标签: asp.net-core asp.net-core-mvc

我正在尝试针对现有数据库对用户进行身份验证。我发现我需要实现IUserStore。我正在尝试创建实现IUser的自定义用户,我可以发现IUser在Microsoft.AspNet.Identity程序集中。在asp.net核心中是否有相同的界面?

感谢任何帮助。

谢谢,

1 个答案:

答案 0 :(得分:1)

我刚刚和谷歌搜索一样,我在GitHub上发现了这个已关闭的问题https://github.com/aspnet/Identity/issues/948

从评论看来,接口似乎不存在,但我们仍然需要在我们的UserStore上提供方法...听起来有点混乱。

我还发现https://docs.microsoft.com/en-us/aspnet/core/security/authentication/cookie描述了没有ASP.NET核心身份的cookie中间件。

这些也很好阅读https://andrewlock.net/introduction-to-authentication-with-asp-net-core/https://andrewlock.net/exploring-the-cookieauthenticationmiddleware-in-asp-net-core/