@@ -68,7 +68,15 @@ protected MultipleResultReader(string commandText, CommandType commandType, Para
6868 return this . ReadMany < TReturn , TSecond , TThird , TFourth , TFifth , TSixth , TReturn > ( ( a , b , c , d , e , f ) => multiMapper . MapRow < TReturn > ( false , a , b , c , d , e , f ) , splitOn )
6969 . PostProcess ( multiMapper ) ;
7070 } ) ;
71-
71+
72+ // UserManagement (GetCaseAccessGraphConfiguration)
73+ public IEnumerable < TReturn > ReadMany < TReturn , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh > ( string splitOn ) where TReturn : new ( ) => this . Execute ( ( ) =>
74+ {
75+ MultiMapper multiMapper = new MultiMapper ( ) ;
76+ return this . ReadMany < TReturn , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TReturn > ( ( a , b , c , d , e , f , g ) => multiMapper . MapRow < TReturn > ( false , a , b , c , d , e , f , g ) , splitOn )
77+ . PostProcess ( multiMapper ) ;
78+ } ) ;
79+
7280 IEnumerable < TReturn > IMultipleResultReader . ReadMany < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TReturn > ( Func < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TReturn > map , string splitOn ) => this . Execute ( ( ) => this . ReadMany ( map , splitOn ) . PostProcess ( ) ) ;
7381
7482 T IMultipleResultReader . ReadSingle < T > ( ) => this . Execute ( ( ) => this . ReadSingle < T > ( ) . PostProcess ( ) ) ;
@@ -138,6 +146,8 @@ protected MultipleResultReader(string commandText, CommandType commandType, Para
138146
139147 protected abstract IEnumerable < TReturn > ReadMany < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TReturn > ( Func < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TReturn > map , string splitOn ) ;
140148
149+ protected abstract IEnumerable < TReturn > ReadMany < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TReturn > ( Func < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TReturn > map , string splitOn ) ;
150+
141151 protected abstract IEnumerable < TReturn > ReadMany < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TEighth , TNinth , TTenth , TReturn > ( Func < TFirst , TSecond , TThird , TFourth , TFifth , TSixth , TSeventh , TEighth , TNinth , TTenth , TReturn > map , string splitOn ) ;
142152
143153 protected abstract T ReadSingle < T > ( ) ;
0 commit comments