C#: Create Connection to SharePoint and Dynamic 365

How to Create Connection to SharePoint and Dynamic CRM using C#.

  1. Connection establish in SharePoint using C#
    1. Reference DLL you need for this code is - 
      1. Microsoft.SharePoint.Client.Latest by Trujillo
      2. Microsoft.SharePoint.Client.Runtime by Trujillo
    2. Below mention is c# code -
    public static string SharePointUrl = "https://CompanyName.sharepoint.com/";
    public static string UserName = "UserName@CompanyName.onmicrosoft.com", PassWord = "o365_Password";
    
    static void Main(string[] args)
    {
        //----------Establish a connection with Microsoft SharePoint.
        SecureString passWord = new SecureString();
        foreach (char c in PassWord.ToCharArray()) passWord.AppendChar(c);
        using (ClientContext clientContext = new ClientContext(SharePointUrl))
        {
            try
            {
                clientContext.Credentials = new SharePointOnlineCredentials(UserName, passWord);
            }
            catch (Exception ex)
            {
                Console.WriteLine("error while establish a SharePoint connection: " + ex.Message.ToString());
            }
    
            // Open the web
            var web = clientContext.Web;
        }
    }
  2. Connection establish in Dynamic CRM using C#
    1. nuget packages you need for this code is -
      1. Install-Package Microsoft.CrmSdk.Extensions
      2. Install-Package Microsoft.CrmSdk.CoreAssemblies
    2. Below mention is c# code -
        public static Guid _accountId;
        static void Main(string[] args)
        {

            string connectionString = "Url = https://CompanyName.crm.dynamics.com/; Username=UserName@CompanyName.onmicrosoft.com; Password=o365_Password;";
            CrmConnection connection = CrmConnection.Parse(connectionString);
            OrganizationService service = new OrganizationService(connection);
            OrganizationServiceContext context = new OrganizationServiceContext(service);

            Entity account = new Entity("account");

            account["name"] = "Fourth Coffee";

            // Create an account record named Fourth Coffee.
            _accountId = service.Create(account);
        }

Comments

Popular posts from this blog

CSharp: Add Graphical Content inside Excel spreadsheet

GitHub Copilot: An AI programming partner