dotConnect for Dynamics 365 Documentation
Devart.Data.Dynamics Namespace / DynamicsCommand Class / Connection Property
Example

    Connection Property (DynamicsCommand)
    Gets or sets the DynamicsConnection used by this instance of the DynamicsCommand.
    Syntax
    'Declaration
     
    Public Shadows Property Connection As DynamicsConnection
     

    Property Value

    The connection to a data source. The default value is a null reference.
    Remarks

    DynamicsConnection specified in this property will carry out all operations executed with this DynamicsCommand.

    Example
    The following example creates a DynamicsCommand and sets some of its properties.
    public void CreateCommand()
    {
      string mySelectQuery = "SELECT * FROM contact ORDER BY ContactID";
      DynamicsCommand dynamicsCommand = new DynamicsCommand(mySelectQuery);
      dynamicsCommand.Connection = new DynamicsConnection(
        "Server=https://your_company.crm4.dynamics.com;User Id=Test@Test.onmicrosoft.com;Password=A123456789;");
      dynamicsCommand.CommandType = System.Data.CommandType.Text;
    }
    Public Sub CreateCommand()
      Dim mySelectQuery As String = _
        "SELECT * FROM contact ORDER BY ContactID"
      Dim dynamicsCommand As New DynamicsCommand(mySelectQuery)
      dynamicsCommand.Connection = New DynamicsConnection( _
        "Server=https://your_company.crm4.dynamics.com;User Id=Test@Test.onmicrosoft.com;Password=A123456789;")
      dynamicsCommand.CommandType = System.Data.CommandType.Text
    End Sub
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also