개정판 08499f5f
issue #00000 documents에 attfile 추가
Change-Id: I1b8152672a9ead34fcb1ffea4f40e200fe42f0ab
ID2.Manager/ID2.Manager.Dapper/Repository/BaseRepository.cs | ||
---|---|---|
98 | 98 |
return this._DbConnection.Query<T>(sql); |
99 | 99 |
} |
100 | 100 |
|
101 |
public IEnumerable<TReturn> MultiQuery<TFirst, TSecond, TReturn>(string sql, Func<TFirst, TSecond, TReturn> map, object param = null, IDbTransaction transaction = null, bool buffered = true, string splitOn = "Id", int? commandTimeout = null, CommandType? commandType = null)
|
|
101 |
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)
|
|
102 | 102 |
{ |
103 | 103 |
if (this._DbConnection.State != ConnectionState.Open) |
104 | 104 |
{ |
105 | 105 |
this._DbConnection.Open(); |
106 | 106 |
} |
107 |
|
|
108 |
return this._DbConnection.Query<TFirst, TSecond, TReturn>(sql, map: map, param: param, transaction: transaction, buffered: buffered, splitOn: splitOn, commandTimeout: commandTimeout, commandType: commandType);
|
|
107 |
|
|
108 |
return this._DbConnection.Query<TFirst, TSecond, TFourth, TReturn >(sql, map: map, param: param, transaction: transaction, buffered: buffered, splitOn: splitOn, commandTimeout: commandTimeout, commandType: commandType);
|
|
109 | 109 |
} |
110 | 110 |
|
111 | 111 |
public T QueryFirst<T>(string sql) |
내보내기 Unified diff