-1

我需要创建 asp.net mvc 应用程序,它将使用 MS Dynamics CRM 2011 作为后端。

我需要设计此应用程序架构的指导。

谁能帮助我如何设计这个应用程序的层?

4

1 回答 1

1

Things I would suggest

  • Use the CrmSvcUtil to generate early bound entities.
  • Include the CRM OrganizationName somewhere in the MVC router.
  • Create a single Lazy Loaded IOrganizationService once per Request (The IOrganizationService is not multi-thread safe)
  • Decide if you want to use a System account with System Admin rights, or allow users to access CRM using their credentials.
  • If you want it to look like CRM, you can download the css files from the SDK.
于 2013-07-02T03:33:16.493 回答