hytos / ID2.Manager / ID2.Manager.Dapper / Repository / BaseRepository.cs @ dfb9a03c
이력 | 보기 | 이력해설 | 다운로드 (10.2 KB)
1 |
using System; |
---|---|
2 |
using System.Collections.Generic; |
3 |
using System.Linq; |
4 |
using System.Text; |
5 |
using System.Threading.Tasks; |
6 |
|
7 |
using System.Data; |
8 |
using System.Data.SqlClient; |
9 |
using System.ComponentModel.DataAnnotations.Schema; |
10 |
#if !MARKUS_IMAGE_CREATE |
11 |
using System.Data.SQLite; |
12 |
#endif |
13 |
using Dapper; |
14 |
|
15 |
namespace ID2.Manager.Dapper.Repository |
16 |
{ |
17 |
public abstract class BaseRepository : IBaseRepository |
18 |
{ |
19 |
protected readonly IDbConnection _DbConnection; |
20 |
protected IDbTransaction _DbTransaction = null; |
21 |
|
22 |
protected BaseRepository(string connectionStr) : this(connectionStr, DatabaseType.MSSQL) { } |
23 |
|
24 |
protected BaseRepository(string connectionStr, DatabaseType dbType) |
25 |
{ |
26 |
switch (dbType) |
27 |
{ |
28 |
#if !MARKUS_IMAGE_CREATE |
29 |
case DatabaseType.SQLITE: |
30 |
this._DbConnection = this.SQLiteDBConnection(connectionStr); |
31 |
break; |
32 |
#endif |
33 |
case DatabaseType.MSSQL: |
34 |
default: |
35 |
this._DbConnection = this.DBConnection(connectionStr); |
36 |
break; |
37 |
} |
38 |
|
39 |
SqlMapper.TypeMapProvider = type => |
40 |
{ |
41 |
// create fallback default type map |
42 |
var fallback = new DefaultTypeMap(type); |
43 |
return new CustomPropertyTypeMap(type, (t, column) => |
44 |
{ |
45 |
var property = t.GetProperties().FirstOrDefault(prop => |
46 |
prop.GetCustomAttributes(typeof(ColumnAttribute), true) |
47 |
.Cast<ColumnAttribute>() |
48 |
.Any(attr => attr.Name == column)); |
49 |
|
50 |
// if no property matched - fall back to default type map |
51 |
if (property == null) |
52 |
{ |
53 |
property = fallback.GetMember(column)?.Property; |
54 |
} |
55 |
|
56 |
return property; |
57 |
}); |
58 |
}; |
59 |
} |
60 |
|
61 |
public SqlConnection DBConnection(string connectionStr) |
62 |
{ |
63 |
return new SqlConnection(connectionStr); |
64 |
} |
65 |
#if !MARKUS_IMAGE_CREATE |
66 |
public SQLiteConnection SQLiteDBConnection(string connectionStr) |
67 |
{ |
68 |
return new SQLiteConnection(connectionStr, true); |
69 |
} |
70 |
#endif |
71 |
|
72 |
public IDbTransaction BeginTransaction() |
73 |
{ |
74 |
if (this._DbConnection.State != ConnectionState.Open) |
75 |
{ |
76 |
this._DbConnection.Open(); |
77 |
} |
78 |
|
79 |
return this._DbConnection.BeginTransaction(); |
80 |
} |
81 |
|
82 |
public void Dispose() |
83 |
{ |
84 |
if (this._DbTransaction != null) |
85 |
{ |
86 |
this._DbTransaction.Commit(); |
87 |
} |
88 |
|
89 |
if (this._DbConnection != null) |
90 |
{ |
91 |
this._DbConnection.Close(); |
92 |
} |
93 |
} |
94 |
|
95 |
public IEnumerable<T> Query<T>(string sql) |
96 |
{ |
97 |
if (this._DbConnection.State != ConnectionState.Open) |
98 |
{ |
99 |
this._DbConnection.Open(); |
100 |
} |
101 |
|
102 |
return this._DbConnection.Query<T>(sql); |
103 |
} |
104 |
|
105 |
public IEnumerable<TReturn> MultiQuery<TFirst, TSecond, TFourth, TReturn>(string sql, Func<TFirst, TSecond, TFourth, TReturn> map, object param = null, IDbTransaction transaction = null, bool buffered = true, string splitOn = "Id", int? commandTimeout = null, CommandType? commandType = null) |
106 |
{ |
107 |
if (this._DbConnection.State != ConnectionState.Open) |
108 |
{ |
109 |
this._DbConnection.Open(); |
110 |
} |
111 |
|
112 |
return this._DbConnection.Query<TFirst, TSecond, TFourth, TReturn >(sql, map: map, param: param, transaction: transaction, buffered: buffered, splitOn: splitOn, commandTimeout: commandTimeout, commandType: commandType); |
113 |
} |
114 |
|
115 |
public IEnumerable<TReturn> MultiQuery<TFirst, TSecond, TFourth, TFifth, TReturn>(string sql, Func<TFirst, TSecond, TFourth, TFifth, TReturn> map, object param = null, IDbTransaction transaction = null, bool buffered = true, string splitOn = "Id", int? commandTimeout = null, CommandType? commandType = null) |
116 |
{ |
117 |
if (this._DbConnection.State != ConnectionState.Open) |
118 |
{ |
119 |
this._DbConnection.Open(); |
120 |
} |
121 |
|
122 |
return this._DbConnection.Query<TFirst, TSecond, TFourth, TFifth, TReturn>(sql, map: map, param: param, transaction: transaction, buffered: buffered, splitOn: splitOn, commandTimeout: commandTimeout, commandType: commandType); |
123 |
} |
124 |
|
125 |
|
126 |
public T QueryFirst<T>(string sql) |
127 |
{ |
128 |
if (this._DbConnection.State != ConnectionState.Open) |
129 |
{ |
130 |
this._DbConnection.Open(); |
131 |
} |
132 |
|
133 |
return this._DbConnection.QueryFirst<T>(sql); |
134 |
} |
135 |
|
136 |
public T QueryFirstOrDefault<T>(string sql, object param, IDbTransaction dbTran = null) |
137 |
{ |
138 |
if (this._DbConnection.State != ConnectionState.Open) |
139 |
{ |
140 |
this._DbConnection.Open(); |
141 |
} |
142 |
|
143 |
return this._DbConnection.QueryFirstOrDefault<T>(sql, param, transaction: dbTran); |
144 |
} |
145 |
|
146 |
|
147 |
public IEnumerable<T> Query<T>(string sql, object param) |
148 |
{ |
149 |
if (this._DbConnection.State != ConnectionState.Open) |
150 |
{ |
151 |
this._DbConnection.Open(); |
152 |
} |
153 |
|
154 |
return this._DbConnection.Query<T>(sql, param); |
155 |
} |
156 |
public IEnumerable<T> Query<T>(string sql, object param, CommandType commandType) |
157 |
{ |
158 |
if (this._DbConnection.State != ConnectionState.Open) |
159 |
{ |
160 |
this._DbConnection.Open(); |
161 |
} |
162 |
|
163 |
return this._DbConnection.Query<T>(sql, param, commandType: commandType); |
164 |
} |
165 |
|
166 |
public async Task<IEnumerable<T>> QueryAsync<T>(string sql) |
167 |
{ |
168 |
if (this._DbConnection.State != ConnectionState.Open) |
169 |
{ |
170 |
this._DbConnection.Open(); |
171 |
} |
172 |
|
173 |
return await this._DbConnection.QueryAsync<T>(sql); |
174 |
} |
175 |
|
176 |
public async Task<IEnumerable<T>> QueryAsync<T>(string sql, object param) |
177 |
{ |
178 |
if (this._DbConnection.State != ConnectionState.Open) |
179 |
{ |
180 |
this._DbConnection.Open(); |
181 |
} |
182 |
|
183 |
return await this._DbConnection.QueryAsync<T>(sql, param); |
184 |
} |
185 |
|
186 |
public SqlMapper.GridReader QueryMultiple(string sql) |
187 |
{ |
188 |
if (this._DbConnection.State != ConnectionState.Open) |
189 |
{ |
190 |
this._DbConnection.Open(); |
191 |
} |
192 |
|
193 |
return this._DbConnection.QueryMultiple(sql); |
194 |
} |
195 |
|
196 |
public SqlMapper.GridReader QueryMultiple(string sql, object param) |
197 |
{ |
198 |
if (this._DbConnection.State != ConnectionState.Open) |
199 |
{ |
200 |
this._DbConnection.Open(); |
201 |
} |
202 |
|
203 |
return this._DbConnection.QueryMultiple(sql, param); |
204 |
} |
205 |
|
206 |
public SqlMapper.GridReader QueryMultiple(string sql, object param, CommandType commandType) |
207 |
{ |
208 |
if (this._DbConnection.State != ConnectionState.Open) |
209 |
{ |
210 |
this._DbConnection.Open(); |
211 |
} |
212 |
|
213 |
return this._DbConnection.QueryMultiple(sql, param, commandType: commandType); |
214 |
} |
215 |
|
216 |
public async Task<SqlMapper.GridReader> QueryMultipleAsync(string sql) |
217 |
{ |
218 |
if (this._DbConnection.State != ConnectionState.Open) |
219 |
{ |
220 |
this._DbConnection.Open(); |
221 |
} |
222 |
|
223 |
return await this._DbConnection.QueryMultipleAsync(sql); |
224 |
} |
225 |
|
226 |
public async Task<SqlMapper.GridReader> QueryMultipleAsync<T>(string sql, object param) |
227 |
{ |
228 |
if (this._DbConnection.State != ConnectionState.Open) |
229 |
{ |
230 |
this._DbConnection.Open(); |
231 |
} |
232 |
|
233 |
return await this._DbConnection.QueryMultipleAsync(sql, param); |
234 |
} |
235 |
|
236 |
public int Execute(string query, IDbTransaction dbTran) |
237 |
{ |
238 |
return this.Execute(query, null, dbTran); |
239 |
} |
240 |
|
241 |
public int Execute(string query, object param, IDbTransaction dbTran) |
242 |
{ |
243 |
if (this._DbConnection.State != ConnectionState.Open) |
244 |
{ |
245 |
this._DbConnection.Open(); |
246 |
} |
247 |
|
248 |
return this._DbConnection.Execute(query, param, dbTran); |
249 |
} |
250 |
|
251 |
|
252 |
public int Execute(string SQL, SqlMapper.IDynamicParameters parameters, IDbTransaction transaction, CommandType commandType) |
253 |
{ |
254 |
if (_DbConnection.State != System.Data.ConnectionState.Open) |
255 |
{ |
256 |
_DbConnection.Open(); |
257 |
} |
258 |
|
259 |
|
260 |
return _DbConnection.Execute(SQL, parameters, transaction, commandType: commandType); |
261 |
} |
262 |
|
263 |
public async Task<int> ExecuteAsync(string query, object param, IDbTransaction dbTran) |
264 |
{ |
265 |
if (this._DbConnection.State != ConnectionState.Open) |
266 |
{ |
267 |
this._DbConnection.Open(); |
268 |
} |
269 |
|
270 |
return await this._DbConnection.ExecuteAsync(query, param, dbTran); |
271 |
} |
272 |
|
273 |
public async Task<int> ExecuteAsync(string SQL, SqlMapper.IDynamicParameters parameters, IDbTransaction transaction, CommandType commandType) |
274 |
{ |
275 |
if (_DbConnection.State != System.Data.ConnectionState.Open) |
276 |
{ |
277 |
_DbConnection.Open(); |
278 |
} |
279 |
|
280 |
|
281 |
return await _DbConnection.ExecuteAsync(SQL, parameters, transaction, commandType: commandType); |
282 |
} |
283 |
|
284 |
public T ExecuteScalar<T>(string query) |
285 |
{ |
286 |
if (this._DbConnection.State != ConnectionState.Open) |
287 |
{ |
288 |
this._DbConnection.Open(); |
289 |
} |
290 |
|
291 |
return this._DbConnection.ExecuteScalar<T>(query); |
292 |
} |
293 |
|
294 |
public T ExecuteScalar<T>(string query, object param) |
295 |
{ |
296 |
if (this._DbConnection.State != ConnectionState.Open) |
297 |
{ |
298 |
this._DbConnection.Open(); |
299 |
} |
300 |
|
301 |
return this._DbConnection.ExecuteScalar<T>(query, param); |
302 |
} |
303 |
|
304 |
|
305 |
public T ExecuteScalar<T>(string query, object param, IDbTransaction dbTran) |
306 |
{ |
307 |
if (_DbConnection.State != ConnectionState.Open) |
308 |
{ |
309 |
_DbConnection.Open(); |
310 |
} |
311 |
|
312 |
return this._DbConnection.ExecuteScalar<T>(query, param, dbTran); |
313 |
} |
314 |
} |
315 |
} |