使用 ASP.NET MVC 3 设计 CRM 时,保存 CRM 数据的最佳方法是什么?
我是 ASP.NET MVC 的新手。过去几个月我一直在学习 MVC 3,在工作中我必须使用 MVC 3 设计 CRM 系统。
在所有 MVC 3 教程中,他们都使用 MS SQL Compact Edition。
在 CRM 项目中,我必须从 QB 数据库导入产品表并将其填充到 CRM 中。
请记住,CRM 必须使用 QB 数据库并导入产品表和 我应该在 SQL CE 中保存 CRM 数据还是应该使用 SQL Server 来保存所有 CRM 数据以及 QB 数据?
I'm a newbie to ASP.NET MVC. I've been learning MVC 3 for the past couple months and at my job I have to design a CRM system using MVC 3.
In all MVC 3 tutorials, they use MS SQL Compact Edition.
In the CRM project, I have to import Products table from the QB Database and populate that into the CRM.
Keeping in mind, the CRM has to use the QB database and import the products table and
Should I save the CRM data in SQL CE or should I use SQL Server to save all the CRM data as well as the QB data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
MVC 3 与数据层完全解耦。您会看到大多数教程将其与 SQL Compact 耦合的原因是因为大多数 Web 应用程序往往需要某种类型的数据库才能正常运行,而 SQL Compact 是最简单的选项之一当重点真正应该放在 MVC 本身上时。
就 MVC 而言,您需要某种方式使数据可用于控制器并最终可供视图使用。您甚至不必使用实体框架(我猜大多数示例都使用实体框架),但是,如果您确实想要要使用实体框架,看起来您可以使用 this 直接查询 Quickbooks
MVC 3 is entirely decoupled from the data layer.. The reason you'll have seen most tutorials coupling it with SQL Compact is because most web application tend to need a database of some sorts to be functional and SQL Compact is one of the simplest options when focus should really be on MVC itself.
As far as MVC, you need some way of making data available to the controller and ultimately the view.. you don't even have to use the entity framework (which I guess most examples use for simplicity), however, if you do want to use the entity framework, it looks like you can query quickbooks directly by using this
据我了解,您应该实现下一个逻辑:
As I understand, you should implement next logic: