gpt4 book ai didi

c# - ASP.Net Identity with WebForms 到现有的 SQL 数据库

转载 作者:行者123 更新时间:2023-11-30 20:51:28 26 4
gpt4 key购买 nike

我尝试了 ASP.Net 标识,它工作正常。然后我尝试使用此处提供的预创建脚本让它与现有的 SQL 数据库一起工作:SQL script for creating an ASP.NET Identity Database

我将默认连接字符串更改为 web.config 中定义的连接字符串:

 public class ApplicationDbContext : IdentityDbContext<ApplicationUser>
{
public ApplicationDbContext()
: base("MyDatabaseEntities")
{
}
}

我愚蠢地认为这就是我需要更改的所有内容,因为表已创建并且我将其指向 SQL 数据库。当我尝试注册新用户时,错误消息是:{“实体类型 ApplicationUser 不是当前上下文模型的一部分。”}

问题:我缺少什么来完成这项工作?是否有使用 Entity Framework 对现有 SQL 数据库实现 Identity 的最佳实践?谢谢。

最佳答案

您可以为此使用 ASP.NET Identity Database。它是 Visual Studio 的 SQL 数据库项目模板,可用于使用 创建自定义 ASP.NET Identity/Membership 提供程序数据库优先开发方法。

请查看下面提到的链接以获取更多信息:

ASP.NET Identity Database

关于c# - ASP.Net Identity with WebForms 到现有的 SQL 数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21682974/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com