Which one of the two methods is more performance ?
using( var DB_Connection_s = new DBConnection() )
{
//todo: interact with database connection
}
or just :
DB_Connection_s.Close();
at the end .
Does the first method make the pooling concept useless.because if i dispose the connection with each use then i have to open a new connection every time (and no connections in the pool at all).