如何通过接口向 ASPNET 成员资格提供程序添加外键?
我正在将 VWD 2008 Express Edition 与 MVC 结合使用,并尝试将数据库中的外键添加到 ASPNET 成员资格数据库的用户表中。使用用户界面可以实现这一点吗?还是每次我想要执行此操作时都必须查找一些 SQL?
编辑:思考了一分钟后,我意识到也许对不同的数据库有一个 FK 甚至是不可能的......我真的没有足够彻底地思考我的问题,是吗?
I'm using VWD 2008 Express Edition with MVC and I am trying to add a foreign key from my database to the ASPNET Membership database's Users table. Is this possible using the user interface or do I have to scrounge up some SQL every time I want to do this?
Edit: After thinking about this for a minute, I realized that maybe having an FK to a different DB wasn't even possible... I really didn't think about my question thoroughly enough, did I?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有用于此目的的 API。创建成员资格表后编写数据库脚本并从那里开始使用您的脚本。 (顺便说一句,您不必使用该表结构来使用成员资格提供程序 如果它不符合您的需求。)
There is no API for that. Script your database once you created the membership tables and use your script from there on. (BTW, you don't have to use that table structure to use the membership provider if it doesn't suit your needs.)