La documentazione MSDN per la chiusura il metodo già lo spiega. Dice (nella sezione Note):
The Close method rolls back any pending transactions. It then releases the connection to the connection pool, or closes the connection if connection pooling is disabled.
An application can call Close more than one time. No exception is generated.
If the DbConnection goes out of scope, it is not closed. Therefore, you must explicitly close the connection by calling Close or Dispose, which are functionally equivalent. If the connection pooling value Pooling is set to true or yes, this also releases the physical connection.
Questo significa che, mentre è sicuro chiamare Close()
nel blocco using
, non è necessario. Dispose()
verrà chiamato quando il controllo del programma lascia il blocco using
, che chiuderà automaticamente la connessione.