@@ -56,8 +56,8 @@ public interface IDataAccessor : IDbConnection
5656 Task < IEnumerable < TReturn > > QueryAsync < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TReturn > ( string sql , Func < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TReturn > map , object param = null , IDbTransaction transaction = null , bool buffered = true , string splitOn = "Id" , int ? commandTimeout = null , CommandType ? commandType = null ) ;
5757 Task < IEnumerable < TReturn > > QueryAsync < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TReturn > ( CommandDefinition command , Func < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TReturn > map , string splitOn = "Id" ) ;
5858 Task < IEnumerable < TReturn > > QueryAsync < TReturn > ( string sql , Type [ ] types , Func < object [ ] , TReturn > map , object param = null , IDbTransaction transaction = null , bool buffered = true , string splitOn = "Id" , int ? commandTimeout = null , CommandType ? commandType = null ) ;
59- Task < IGridReader > QueryMultipleAsync ( string sql , object param = null , IDbTransaction transaction = null , int ? commandTimeout = null , CommandType ? commandType = null ) ;
60- Task < IGridReader > QueryMultipleAsync ( CommandDefinition command ) ;
59+ Task < IGridAccessor > QueryMultipleAsync ( string sql , object param = null , IDbTransaction transaction = null , int ? commandTimeout = null , CommandType ? commandType = null ) ;
60+ Task < IGridAccessor > QueryMultipleAsync ( CommandDefinition command ) ;
6161 Task < IDataReader > ExecuteReaderAsync ( string sql , object param = null , IDbTransaction transaction = null , int ? commandTimeout = null , CommandType ? commandType = null ) ;
6262 Task < IDataReader > ExecuteReaderAsync ( CommandDefinition command ) ;
6363 Task < IDataReader > ExecuteReaderAsync ( CommandDefinition command , CommandBehavior commandBehavior ) ;
@@ -94,8 +94,8 @@ public interface IDataAccessor : IDbConnection
9494 T QueryFirstOrDefault < T > ( CommandDefinition command ) ;
9595 T QuerySingle < T > ( CommandDefinition command ) ;
9696 T QuerySingleOrDefault < T > ( CommandDefinition command ) ;
97- IGridReader QueryMultiple ( string sql , object param = null , IDbTransaction transaction = null , int ? commandTimeout = null , CommandType ? commandType = null ) ;
98- IGridReader QueryMultiple ( CommandDefinition command ) ;
97+ IGridAccessor QueryMultiple ( string sql , object param = null , IDbTransaction transaction = null , int ? commandTimeout = null , CommandType ? commandType = null ) ;
98+ IGridAccessor QueryMultiple ( CommandDefinition command ) ;
9999 IEnumerable < TReturn > Query < 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 ) ;
100100 IEnumerable < TReturn > Query < TFirst , TSecond , TThird , TReturn > ( string sql , Func < TFirst , TSecond , TThird , TReturn > map , object param = null , IDbTransaction transaction = null , bool buffered = true , string splitOn = "Id" , int ? commandTimeout = null , CommandType ? commandType = null ) ;
101101 IEnumerable < TReturn > Query < TFirst , TSecond , TThird , TFourth , TReturn > ( string sql , Func < TFirst , TSecond , TThird , TFourth , TReturn > map , object param = null , IDbTransaction transaction = null , bool buffered = true , string splitOn = "Id" , int ? commandTimeout = null , CommandType ? commandType = null ) ;
0 commit comments