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

In This Topic
    Connection Property (DynamicsCommand)
    In This Topic
    Gets or sets the DynamicsConnection used by this instance of the DynamicsCommand.
    Syntax
    'Declaration
     
    Public Shadows Property Connection As DynamicsConnection
    public new DynamicsConnection Connection {get; set;}

    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 [email protected];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 [email protected];Password=A123456789;")
      dynamicsCommand.CommandType = System.Data.CommandType.Text
    End Sub
    See Also