@@ -18,6 +18,7 @@ public static partial class QueryBatchExtensions
18
18
/// <param name="batch">The batch.</param>
19
19
/// <param name="query">The query.</param>
20
20
/// <param name="afterLoad">Callback to execute when query is loaded. Loaded results are provided as action parameter.</param>
21
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
21
22
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
22
23
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
23
24
/// <returns>The batch instance for method chain.</returns>
@@ -32,6 +33,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, IQueryOver query,
32
33
/// <param name="batch">The batch.</param>
33
34
/// <param name="key">A key for retrieval of the query result.</param>
34
35
/// <param name="query">The query.</param>
36
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
35
37
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
36
38
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
37
39
/// <returns>The batch instance for method chain.</returns>
@@ -49,6 +51,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, string key, IQuer
49
51
/// <param name="batch">The batch.</param>
50
52
/// <param name="query">The query.</param>
51
53
/// <param name="afterLoad">Callback to execute when query is loaded. Loaded results are provided as action parameter.</param>
54
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
52
55
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
53
56
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
54
57
/// <returns>The batch instance for method chain.</returns>
@@ -63,6 +66,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, IQueryOver<TResul
63
66
/// <param name="batch">The batch.</param>
64
67
/// <param name="key">A key for retrieval of the query result.</param>
65
68
/// <param name="query">The query.</param>
69
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
66
70
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
67
71
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
68
72
/// <returns>The batch instance for method chain.</returns>
@@ -78,6 +82,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, string key, IQuer
78
82
/// <param name="batch">The batch.</param>
79
83
/// <param name="query">The query.</param>
80
84
/// <param name="afterLoad">Callback to execute when query is loaded. Loaded results are provided as action parameter.</param>
85
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
81
86
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
82
87
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
83
88
/// <returns>The batch instance for method chain.</returns>
@@ -92,6 +97,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, ICriteria query,
92
97
/// <param name="batch">The batch.</param>
93
98
/// <param name="key">A key for retrieval of the query result.</param>
94
99
/// <param name="query">The query.</param>
100
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
95
101
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
96
102
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
97
103
/// <returns>The batch instance for method chain.</returns>
@@ -107,6 +113,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, string key, ICrit
107
113
/// <param name="batch">The batch.</param>
108
114
/// <param name="query">The query.</param>
109
115
/// <param name="afterLoad">Callback to execute when query is loaded. Loaded results are provided as action parameter.</param>
116
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
110
117
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
111
118
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
112
119
/// <returns>The batch instance for method chain.</returns>
@@ -121,6 +128,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, DetachedCriteria
121
128
/// <param name="batch">The batch.</param>
122
129
/// <param name="key">A key for retrieval of the query result.</param>
123
130
/// <param name="query">The query.</param>
131
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
124
132
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
125
133
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
126
134
/// <returns>The batch instance for method chain.</returns>
@@ -136,6 +144,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, string key, Detac
136
144
/// <param name="batch">The batch.</param>
137
145
/// <param name="query">The query.</param>
138
146
/// <param name="afterLoad">Callback to execute when query is loaded. Loaded results are provided as action parameter.</param>
147
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
139
148
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
140
149
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
141
150
/// <returns>The batch instance for method chain.</returns>
@@ -150,6 +159,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, IQuery query, Act
150
159
/// <param name="batch">The batch.</param>
151
160
/// <param name="key">A key for retrieval of the query result.</param>
152
161
/// <param name="query">The query.</param>
162
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
153
163
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
154
164
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
155
165
/// <returns>The batch instance for method chain.</returns>
@@ -165,6 +175,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, string key, IQuer
165
175
/// <param name="batch">The batch.</param>
166
176
/// <param name="query">The query.</param>
167
177
/// <param name="afterLoad">Callback to execute when query is loaded. Loaded results are provided as action parameter.</param>
178
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
168
179
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
169
180
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
170
181
/// <returns>The batch instance for method chain.</returns>
@@ -179,6 +190,7 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, IQueryable<TResul
179
190
/// <param name="batch">The batch.</param>
180
191
/// <param name="key">A key for retrieval of the query result.</param>
181
192
/// <param name="query">The query.</param>
193
+ /// <typeparam name="TResult">The type of the query result elements.</typeparam>
182
194
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
183
195
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
184
196
/// <returns>The batch instance for method chain.</returns>
@@ -195,6 +207,8 @@ public static IQueryBatch Add<TResult>(this IQueryBatch batch, string key, IQuer
195
207
/// <param name="query">The query.</param>
196
208
/// <param name="selector">An aggregation function to apply to <paramref name="query"/>.</param>
197
209
/// <param name="afterLoad">Callback to execute when query is loaded. Loaded results are provided as action parameter.</param>
210
+ /// <typeparam name="TSource">The type of the query elements before aggregation.</typeparam>
211
+ /// <typeparam name="TResult">The type resulting of the query result aggregation.</typeparam>
198
212
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
199
213
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
200
214
/// <returns>The batch instance for method chain.</returns>
@@ -210,6 +224,8 @@ public static IQueryBatch Add<TSource, TResult>(this IQueryBatch batch, IQueryab
210
224
/// <param name="key">A key for retrieval of the query result.</param>
211
225
/// <param name="query">The query.</param>
212
226
/// <param name="selector">An aggregation function to apply to <paramref name="query"/>.</param>
227
+ /// <typeparam name="TSource">The type of the query elements before aggregation.</typeparam>
228
+ /// <typeparam name="TResult">The type resulting of the query result aggregation.</typeparam>
213
229
/// <exception cref="InvalidOperationException">Thrown if the batch has already been executed.</exception>
214
230
/// <exception cref="ArgumentNullException">Thrown if <paramref name="query"/> is <see langword="null"/>.</exception>
215
231
/// <returns>The batch instance for method chain.</returns>
0 commit comments