使用 ASP.NET MVC 3 设计 CRM 时,保存 CRM 数据的最佳方法是什么?

发布于 2024-12-23 10:39:45 字数 268 浏览 2 评论 0原文

我是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

呆萌少年 2024-12-30 10:39:45

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

月朦胧 2024-12-30 10:39:45

据我了解,您应该实现下一个逻辑:

  1. 从 QuickBooks 检索所需的数据。在这里,您可以使用任何类型的付费工具,例如上面提到的 RssBus QuickBooks Data Provider,但您仍然可以直接使用 QuickBooks SDK(QBXML 或 QBFC)来完成此操作,这并不难。
  2. 将接收到的数据转换为适用于您的产品表结构的格式。
  3. 使用 LINQ to SQL 或任何您想要的方式执行数据导出。使用哪个版本的 MS SQL Server 完全取决于您,并且仅取决于您需要的功能的复杂性。

As I understand, you should implement next logic:

  1. Retrieve needed data from QuickBooks. Here you can use any kind of paid tools like RssBus QuickBooks Data Provider mentioned above, but you are still free to do it using QuickBooks SDK directly (QBXML or QBFC), it is not so hard.
  2. Convert received data to format applicable to your Products table structure.
  3. Perform data export using LINQ to SQL or whatever you want. It is completely up to you which edition of MS SQL Server to use and depends only on complexity of functionality that you need from it.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文