Will a using block close a database connection?

Yes, it will; the implementation of DbConnection.Dispose() calls Close() (and so do its derived implementations).

Leave a Comment