Comment définir le niveau d'isolation sur SqlCommand / SqlConnection initialisé sans transaction

La méthode suivante est censé peroform un sale lire sur une connexion ouverte. Il n'y a pas de transactions. Où puis-je configurer IsolationLevel?

public string DoDirtyRead(string storedProcName, SqlConnection connection)
{
    using (SqlCommand command = new SqlCommand(storedProcName, connection))
    {
        command.CommandType = CommandType.StoredProcedure;
        // HOW TO SET IsolationLevel to READ_UNCOMMITTED here?
        command.ExecuteNonQuery();
    }
}

source d'informationauteur kateroh