3
votes
Why call SqlClient.SqlDataReader Close() method anyway?
One good practice (as long as you aren't re-using connections) is to add the Command Behavior to the SqlDataReader to close the connection when it gets disposed:
SqlDataReader rdr = …
