/// <summary> /// Initializes a new instance of the <see cref="MKCommand" /> class. /// </summary> /// <param name="connection">The connection.</param> /// <param name="commandText">The command text.</param> public MKCommand(MKConnection connection, string commandText) : this(connection) { CommandText = commandText; }
/// <summary> /// Initializes a new instance of the <see cref="MKCommand" /> class. /// </summary> /// <param name="connection">The connection.</param> public MKCommand(MKConnection connection) : this() { Connection = connection; }