blob: 0e0998f324bc9ab0caff79d8eac9409c3625589b (
plain)
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
|
using Gestor.Infrastructure.Configuration;
using Gestor.Infrastructure.Repository.Generic;
using NHibernate;
using NHibernate.Linq;
using System;
using System.Data;
using System.Linq;
using System.Runtime.CompilerServices;
using System.Threading;
namespace Gestor.Infrastructure.UnitOfWork.Generic
{
public class GenericUnitOfWork : IDisposable, IGenericUnitOfWork
{
public bool HasSession
{
get
{
return this.Session != null;
}
}
public ISession Session
{
get;
}
private ITransaction Transaction
{
get;
}
protected GenericUnitOfWork(string connectionString, bool withTransaction = true)
{
bool state;
ITransaction transaction;
int num = 0;
while (true)
{
if (num < 3)
{
try
{
this.Session = SessionFactory.OpenSession(connectionString);
if (withTransaction)
{
ISession session = this.Session;
if (session != null)
{
transaction = session.BeginTransaction(IsolationLevel.ReadUncommitted);
}
else
{
transaction = null;
}
this.Transaction = transaction;
}
else if (this.Session != null)
{
ISession session1 = this.Session;
if (session1 != null)
{
state = session1.Connection.State != ConnectionState.Open;
}
else
{
state = true;
}
if (state)
{
this.Session.Connection.Open();
}
}
break;
}
catch (ArgumentNullException argumentNullException)
{
throw;
}
catch (Exception exception)
{
if (SessionFactory.Retry)
{
Thread.Sleep(1000);
}
else
{
this.Session = null;
break;
}
}
num++;
}
else
{
this.Session = null;
break;
}
}
}
public void Commit()
{
if (this.Transaction != null && this.Transaction.IsActive)
{
this.Transaction.Commit();
}
}
public void Dispose()
{
ISession session = this.Session;
if (session != null)
{
session.Dispose();
}
else
{
}
ITransaction transaction = this.Transaction;
if (transaction == null)
{
return;
}
transaction.Dispose();
}
public IQueryable<TEntity> Query<TEntity>()
where TEntity : class
{
return this.Session.Query<TEntity>();
}
public IGenericRepository<TEntity> Repository<TEntity>()
where TEntity : class
{
return new GenericRepository<TEntity>(this.Session);
}
public void Rollback()
{
if (this.Transaction != null && this.Transaction.IsActive)
{
this.Transaction.Rollback();
}
}
}
}
|