3 writes to _poolCollection
System.Data.Odbc (3)
src\libraries\Common\src\System\Data\ProviderBase\DbConnectionPoolGroup.cs (3)
58
_poolCollection
= new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>();
111
_poolCollection
= new ConcurrentDictionary<DbConnectionPoolIdentity, DbConnectionPool>();
265
_poolCollection
= newPoolCollection;
9 references to _poolCollection
System.Data.Odbc (9)
src\libraries\Common\src\System\Data\ProviderBase\DbConnectionPoolGroup.cs (9)
108
if (!
_poolCollection
.IsEmpty)
110
oldPoolCollection =
_poolCollection
;
130
return
_poolCollection
.Count;
164
if (!
_poolCollection
.TryGetValue(currentIdentity, out pool)) // find the pool
169
if (!
_poolCollection
.TryGetValue(currentIdentity, out pool))
180
bool addResult =
_poolCollection
.TryAdd(currentIdentity, newPool);
235
if (!
_poolCollection
.IsEmpty)
239
foreach (var entry in
_poolCollection
)
270
if (
_poolCollection
.IsEmpty)