I want to close the SqlConnection in the Finally since the using not really close it and the connection pool gets full. but I don\'t realize what\'s the right way to fo that
As per my understanding Dispose() method of connection object will close the Connection. You don't need to call Connection.Close explicitly.