9. May 2011 15:42
To import an organization in Microsoft CRM 2011, you can use the deploymentservice by using the BeginImportOrganizationRequest. See the code sample below
BeginImportOrganizationRequest request = new BeginImportOrganizationRequest();
request.DatabaseName = "DATABASE_MSCRM"; //Name of the database...
[More]