Io sto usando le proprietà di Mysql.Data.

faccio una select in questo modo:

string cmdText = "SELECT * from utente where id_tipologia=?p1;";
MySqlCommand selectCommand = new MySqlCommand(cmdText, this.connection);
selectCommand.Parameters.AddWithValue("?p1", id_tipologia);

Come faccio ad eseguire questa select?
Come faccio a farmi dare un determinato campo della tabella(ad esempio il campo nome)?