成员表和其他表位于一个数据库中还是分开?
我有一个 ASP.NET 站点,该站点的 Main_DB 中包含成员资格表。我可以为站点添加更多表来存储站点所需的其他数据,还是该数据应该位于另一个数据库中?
I have an ASP.NET site with membership tables in a Main_DB for the site. Can I add more tables for the site for other data needed for the site or should that data be in another database?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只有一个数据库,我会将 ASP.NET 成员资格表放入该数据库中。
如果您想在多个应用程序之间共享用户和角色,将 ASP.NET 成员资格和角色内容放入单独的数据库中可能会更容易。
If you only have one database, I'd put the ASP.NET membership tables into that database.
If you want to share the users and roles amongst several apps, it's probably easier to put the ASP.NET membership and role stuff into a separate database.