-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathThreadConnection.cs
More file actions
59 lines (52 loc) · 1.06 KB
/
Copy pathThreadConnection.cs
File metadata and controls
59 lines (52 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data.Common;
namespace LightDataAccess
{
public class ThreadConnection: IDisposable
{
[ThreadStatic]
private static DbConnection connection;
[ThreadStatic]
private static int entriesCount;
public ThreadConnection(Func<DbConnection> connectionCreator)
{
if (connection == null || connection.State == System.Data.ConnectionState.Broken)
{
connection = connectionCreator();
}
entriesCount++;
}
public DbConnection Connection
{
get
{
if (connection.State == System.Data.ConnectionState.Closed)
{
connection.Open();
}
return connection;
}
}
#region IDisposable Members
public void Dispose()
{
if (entriesCount <= 1)
{
if (connection != null)
{
connection.Close();
}
connection = null;
entriesCount = 0;
}
else
{
entriesCount--;
}
}
#endregion
}
}