protected bool Equals(ConnectionInfo other) { return(string.Equals(_server, other._server) && string.Equals(_username, other._username) && string.Equals(ServerType, other.ServerType)); }
public QueryArguments(ConnectionInfo connection, string query) { Connection = connection; Query = query; }