Hi, this is a simple question that you might find out if you have been in this situation before:
Imagine that I have a loop and inside it I create an instance of a DataContext and I perform some queries to the database.
The question is... Is the DataContext opening a Connection only the first time and reusing it or a new connection to the DB is open/closed in every loop? If the latter, can I force in some way to use only one connection?
thx