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