为什么由 aspnet_regsql 创建的 SQL 成员数据库表没有主键
这个问题是关于 aspnet_regsql 为 ASP.NET 2.0 成员数据库创建的表。
我将数据库中的这些表和过程等合并到我的应用程序数据库中,以便于管理和与应用程序数据的集成。
我注意到没有一个表有主键。这是我用来创建和管理实体、dto、存储库类和验证的工具的一个难题。
有谁知道为什么这些表没有主键以及向这些表添加主键是否会干扰该数据库包含的内置存储过程的操作?
谢谢,
金博尔
This question is about the tables created by aspnet_regsql for the ASP.NET 2.0 Membership database.
I am incorporating these tables and procs, etc from the database into my application database for ease of manageemnt and integration with the application data.
I notice that none of the tables have primary keys. This is a difficulty with the tools I use to create and manage entities, dto's, repository classes and validation.
Does anyone know why these tables do not have primary keys and whether adding primary keys to these tables will interfere with the operation of the baked-in stored procs that this database includes?
Thanks,
Kimball
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
那么您的安装一定出了问题 - 就我而言,“aspnetdb”中的所有表都有主键,就像任何严肃的表应该有的那样:
尝试删除 aspnetdb 并重新安装...
马克
Then something must have gone wrong with your installation - in my case, all the tables in "aspnetdb" have primary keys like any serious table should have:
Try removing aspnetdb and reinstalling...
Marc