개정판 709c1971
issue #0000
전체 유저 리스트 추가
문서 저장/수정/삭제 추가 진행
Change-Id: I828d95f415d5d360bfc039625eb7aa42fd4135c2
ID2.Manager/ID2.Manager.Dapper/Repository/BaseRepository.cs | ||
---|---|---|
95 | 95 |
return await this._DbConnection.QueryAsync<T>(sql, param); |
96 | 96 |
} |
97 | 97 |
|
98 |
public int Execute(string query, IDbTransaction dbTran) |
|
99 |
{ |
|
100 |
if (this._DbConnection.State != ConnectionState.Open) |
|
101 |
{ |
|
102 |
this._DbConnection.Open(); |
|
103 |
} |
|
104 |
|
|
105 |
return this._DbConnection.Execute(query, dbTran); |
|
106 |
} |
|
107 |
|
|
98 | 108 |
public int Execute(string query, object param, IDbTransaction dbTran) |
99 | 109 |
{ |
100 | 110 |
if (this._DbConnection.State != ConnectionState.Open) |
내보내기 Unified diff