SharePoint with MVC 5 what better way to work?

4

My question is what form of hosting should I use?

  • Provider-hosted
  • Autohosted
  • SharePoint-hosted

Application will stay on the server to be consumed by internal users and external users .

Our team is made up of MVC developers and has a Sharepoint person, which standard to use MVC with Sharepoint in this situation?

  • We have to make the user log in
  • We need to read Sharepoint list
  • Sharepoint workflow will exist
asked by anonymous 10.08.2015 / 16:19

1 answer

4
Since most of the team is from MVC developers, the best solution may be the Provider-hosted, since the architecture revolves around a common webapplication that is integrated with Sharepoint.

In this way, you can also have some facilities such as the SharePoint Client Side Object Model (CSOM) or REST / OData APIs to access and manage information from within SharePoint.

Here are some links that can help you with this decision:

Choose patterns for developing and hosting your SharePoint Add-in link

SharePoint Add-ins link

    
11.09.2015 / 14:06