Microsoft CRM 和 xRM 之间的差异

发布于 2024-08-09 14:08:50 字数 181 浏览 2 评论 0原文

我正在浏览新的 xrm.com 页面,我发现它缺少一些关于其含义的具体信息。

您能否解释一下 Microsoft CRM 和 xRM 之间的主要区别是什么?它为开发人员或客户提供了哪些额外功能?

提前致谢。

I am browsing the new xrm.com page and I find it lacks some concrete information of what does it means.

Could you please explain what are the main differences between Microsoft CRM and xRM? What extra features does it gives to the developer or customer?

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

梦行七里 2024-08-16 14:08:50

xRM 只是 Microsoft 的营销举措,旨在让人们考虑使用 Dynamics CRM 不仅仅用于“客户”关系管理。没有单独的产品:xRM 就是 CRM。

xRM is just Microsoft's marketing push to get people thinking about using Dynamics CRM for more than just "Customer" Relationship Management. There is no separate product: xRM is CRM.

一生独一 2024-08-16 14:08:50

您必须将 Dynamics CRM 视为一个真正的开发平台,您可以使用它来开发管理您想要的一切的应用程序。

默认情况下可以使用CRM来管理客户关系,但事实上,我使用Dynamics CRM开发的应用程序越来越与CRM无关。这就是 Microsoft 表示 Dynamics CRM 可用于创建 xRM 解决方案的原因。

You have to consider Dynamics CRM as a real development platform you can use to develop application that manage everything you want.

CRM can be used by default to manage Customer Relationship but in fact, the applications I develop with Dynamics CRM are more and more not related to CRM. That's the reason why Microsoft says that Dynamics CRM an be used to create xRM solutions.

幻梦 2024-08-16 14:08:50

对于我的 0.02 美元,Microsoft XRM 确实意味着对 CRM 开发人员的数据访问热爱。在 CRM 4.0.13 SDK(2010 年 10 月随 Rollup 13 一起发布)中,查看 microsoft.xrm 目录。有一个 CHM 和一些 Word 文档演练以及一些示例代码。工具目录中包含 crmsvutil 可执行文件,它将生成一个巨大的代理类(我的代理类> 140,000 LoC),以便您可以使用 LINQ 以智能方式访问 CRM。

该代理有一个基于 ConnectionString 的 DataContext,感觉非常像实体框架。不再需要 FetchXML,不再需要带有弱类型 BusinessEntityCollection 的 QueryExpressions。当您查询时,您会返回强模型类型的 IQueryable,这些模型甚至具有从 CRM 实体自定义中的描述派生的 Intellisense XML 注释。简而言之,从 CRM 获取数据变得不再那么麻烦。

半信半疑:我仍在开发我的第一个使用 microsoft.xrm 的 ASP.Net MVC 应用程序,因此我还不知道它的生产性能或稳定性。

For my $0.02, Microsoft XRM really means data access love to CRM developers. In the CRM 4.0.13 SDK (released in Oct 2010 with Rollup 13), check out the microsoft.xrm directory. There's a CHM and some Word doc walkthroughs and some sample code. In the tools directory lives the crmsvutil executable that will generate a giant proxy class (mine was > 140,000 LoC) so that you can use LINQ to access CRM in an intelligent way.

The proxy has a DataContext based on a ConnectionString that feels very much like Entity Framework. No more FetchXML, no more QueryExpressions with the wimpy-typed BusinessEntityCollection. When you query, you get back IQueryables of strong model types that even have Intellisense XML comments derived from the descriptions in your CRM Entity customizations. In short, getting data from CRM becomes less of a drag.

A grain of salt: I'm still developing my first ASP.Net MVC app that uses microsoft.xrm, so I have no idea of it's production performance or stability yet.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文