Does anyone know if the ADO.Net API allows for setting the transaction level without creating a transaction object?
I want to open a connection for a SELECT command without an implicit transaction? The only way I see to do it is to send the command text 'SET TRANSACTION ISOLATION TO READ UNCOMMITED' before sending the select command?
If possible I would rather have ADO.Net send the command in a batch with the select so there is not the extra traffic to the server.
If not, is there a way to know what IsolcationLevel is set on the connection pulled from the pool without sending a command to SQL Server?
Thanks,
BOb