不同的应用程序按区域划分?
我已经编写了一些小型应用程序,数据库设计很简单,只是一个标准化数据库,其中包含应用程序所需的所有数据。
现在我想尝试编写更大的东西:
应该有 4 个使用 MVC3 构建的网站。所有网站都应该只使用一个 SQL 会员数据库,并且一些表(例如联系人等)也应该在不同页面之间共享。
现在我的问题是:如何开始?
我应该将所有应用程序放入一个 MVC3 应用程序中,然后使用区域将它们分开吗?
是否有人在创建像这样的大型应用程序(对我来说是巨大的;-))方面有技巧或经验?
I already have programmed some small applications, the database design was simple, just one normalized database containing all the datas I need for the application.
Now I want to try to programm something bigger:
There should be 4 websites build with MVC3. All the websites should use only one SQL-Membership-Database and some tables like contacts and so on should be shared between the different pages too.
Now my question is: how to start?
Should I put all the Applications into one MVC3-application and just separate them by using areas?
Is there anyone who have got tipps or experiences in creating huge (for me its huge ;-)) applications like this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用区域的想法非常可行。您可能需要创建一些自定义角色来限制对这四个区域的访问。
您将需要搜索 ASP.NET MVC 多租户。此链接 http:// /weblogs.asp.net/zowens/archive/2010/05/26/multi-tenant-asp-net-mvc-introduction.aspx 开始整个系列多租户。
Your idea to use areas could very well work. You might need to create some custom roles to restrict access to the four areas.
You will want to do a search on asp.net mvc multi-tenancy. This link http://weblogs.asp.net/zowens/archive/2010/05/26/multi-tenant-asp-net-mvc-introduction.aspx begins a whole series on multi-tenancy.