@@ -40,7 +40,7 @@ public QueryParameters(IType[] positionalParameterTypes, object[] postionalParam
40
40
: this ( positionalParameterTypes , postionalParameterValues , namedParameters , null , null , false , false , false , null , null , collectionKeys , null , null ) { }
41
41
42
42
public QueryParameters ( IType [ ] positionalParameterTypes , object [ ] positionalParameterValues , IDictionary < string , LockMode > lockModes , RowSelection rowSelection ,
43
- bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion , string comment , bool isLookupByNaturalKey , IResultTransformer transformer )
43
+ bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion , string comment , bool isLookupByNaturalKey , IResultTransformer transformer )
44
44
: this ( positionalParameterTypes , positionalParameterValues , null , lockModes , rowSelection , isReadOnlyInitialized , readOnly , cacheable , cacheRegion , comment , null , transformer , null )
45
45
{
46
46
NaturalKeyLookup = isLookupByNaturalKey ;
@@ -67,15 +67,15 @@ public QueryParameters(IDictionary<string, TypedValue> namedParameters, IDiction
67
67
[ Obsolete ( "Please use QueryParameters(IType[], object[], IDictionary<string, TypedValue>, " +
68
68
"IDictionary<string, LockMode>, RowSelection, bool, bool, bool, string, string, object[], IResultTransformer, HashSet<string>) instead." ) ]
69
69
public QueryParameters ( IType [ ] positionalParameterTypes , object [ ] positionalParameterValues , IDictionary < string , TypedValue > namedParameters ,
70
- IDictionary < string , LockMode > lockModes , RowSelection rowSelection , bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion ,
71
- string comment , object [ ] collectionKeys , IResultTransformer transformer )
70
+ IDictionary < string , LockMode > lockModes , RowSelection rowSelection , bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion ,
71
+ string comment , object [ ] collectionKeys , IResultTransformer transformer )
72
72
: this (
73
73
TypeHelper . EmptyTypeArray , Array . Empty < object > ( ) , namedParameters , lockModes , rowSelection , isReadOnlyInitialized , readOnly , cacheable , cacheRegion , comment , null ,
74
74
transformer , null ) { }
75
75
76
76
public QueryParameters ( IType [ ] positionalParameterTypes , object [ ] positionalParameterValues , IDictionary < string , TypedValue > namedParameters ,
77
- IDictionary < string , LockMode > lockModes , RowSelection rowSelection , bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion ,
78
- string comment , object [ ] collectionKeys , IResultTransformer transformer , HashSet < string > uncacheableCollections )
77
+ IDictionary < string , LockMode > lockModes , RowSelection rowSelection , bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion ,
78
+ string comment , object [ ] collectionKeys , IResultTransformer transformer , HashSet < string > uncacheableCollections )
79
79
{
80
80
PositionalParameterTypes = positionalParameterTypes ?? Array . Empty < IType > ( ) ;
81
81
PositionalParameterValues = positionalParameterValues ?? Array . Empty < object > ( ) ;
@@ -93,8 +93,8 @@ public QueryParameters(IType[] positionalParameterTypes, object[] positionalPara
93
93
}
94
94
95
95
public QueryParameters ( IType [ ] positionalParameterTypes , object [ ] positionalParameterValues , IDictionary < string , TypedValue > namedParameters ,
96
- IDictionary < string , LockMode > lockModes , RowSelection rowSelection , bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion ,
97
- string comment , object [ ] collectionKeys , object optionalObject , string optionalEntityName , object optionalId , IResultTransformer transformer )
96
+ IDictionary < string , LockMode > lockModes , RowSelection rowSelection , bool isReadOnlyInitialized , bool readOnly , bool cacheable , string cacheRegion ,
97
+ string comment , object [ ] collectionKeys , object optionalObject , string optionalEntityName , object optionalId , IResultTransformer transformer )
98
98
: this (
99
99
positionalParameterTypes , positionalParameterValues , namedParameters , lockModes , rowSelection , isReadOnlyInitialized , readOnly , cacheable , cacheRegion , comment , collectionKeys ,
100
100
transformer , null )
@@ -219,7 +219,7 @@ public void ValidateParameters()
219
219
if ( typesLength != valuesLength )
220
220
{
221
221
throw new QueryException ( "Number of positional parameter types (" + typesLength
222
- + ") does not match number of positional parameter values (" + valuesLength + ")" ) ;
222
+ + ") does not match number of positional parameter values (" + valuesLength + ")" ) ;
223
223
}
224
224
}
225
225
0 commit comments