@@ -14,11 +14,11 @@ public partial class MultiAnyLinqQuery<T> : MultiAnyQuery<T>
1414 private static Delegate _postExecuteTransformer ;
1515 private static NhLinqExpression _linqEx ;
1616
17- public MultiAnyLinqQuery ( IQueryable query ) : base ( GetQuery ( query ) )
17+ public MultiAnyLinqQuery ( IQueryable query ) : base ( GetQuery ( query ) )
1818 {
1919 }
20-
21- public MultiAnyLinqQuery ( IQuery query ) : base ( query )
20+
21+ public MultiAnyLinqQuery ( IQuery query ) : base ( query )
2222 {
2323 }
2424
@@ -28,10 +28,10 @@ internal MultiAnyLinqQuery(IQuery query, NhLinqExpression linq) : base(query)
2828 _postExecuteTransformer = _linqEx . ExpressionToHqlTranslationResults . PostExecuteTransformer ;
2929 }
3030
31- private MultiAnyLinqQuery ( IQueryable query , Expression modifiedOriginalExpression ) : base ( GetQuery ( query , modifiedOriginalExpression ) )
31+ private MultiAnyLinqQuery ( IQueryable query , Expression modifiedOriginalExpression ) : base ( GetQuery ( query , modifiedOriginalExpression ) )
3232 {
3333 }
34-
34+
3535 public static MultiAnyLinqQuery < TResult > GetForSelector < TResult > ( IQueryable < T > query , Expression < Func < IQueryable < T > , TResult > > selector )
3636 {
3737 var expression = ReplacingExpressionVisitor
@@ -43,7 +43,7 @@ public static MultiAnyLinqQuery<TResult> GetForSelector<TResult>(IQueryable<T> q
4343 private static IQuery GetQuery ( IQueryable query , Expression ex = null )
4444 {
4545 var prov = query . Provider as INhQueryProviderSupportMultiBatch ;
46-
46+
4747 var q = prov . GetPreparedQuery ( ex ?? query . Expression , out _linqEx ) ;
4848 _postExecuteTransformer = _linqEx . ExpressionToHqlTranslationResults . PostExecuteTransformer ;
4949 return q ;
@@ -84,7 +84,7 @@ private static List<T> GetTransformedResults(IList transformerList)
8484 } ;
8585 }
8686
87- public System . Type GetResultTypeIfChanged ( )
87+ private System . Type GetResultTypeIfChanged ( )
8888 {
8989 if ( _postExecuteTransformer == null )
9090 {
0 commit comments