@@ -42,61 +42,61 @@ public async Task NullEqualityAsync()
42
42
43
43
// Null literal against itself
44
44
q = from x in session . Query < AnotherEntity > ( ) where null == null select x ;
45
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
45
+ await ( ExpectAllAsync ( q ) ) ;
46
46
47
47
// Null against constants
48
48
q = from x in session . Query < AnotherEntity > ( ) where null == "value" select x ;
49
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
49
+ await ( ExpectNoneAsync ( q ) ) ;
50
50
q = from x in session . Query < AnotherEntity > ( ) where "value" == null select x ;
51
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
51
+ await ( ExpectNoneAsync ( q ) ) ;
52
52
53
53
// Null against variables
54
54
q = from x in session . Query < AnotherEntity > ( ) where null == nullVariable select x ;
55
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
55
+ await ( ExpectAllAsync ( q ) ) ;
56
56
q = from x in session . Query < AnotherEntity > ( ) where null == notNullVariable select x ;
57
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
57
+ await ( ExpectNoneAsync ( q ) ) ;
58
58
q = from x in session . Query < AnotherEntity > ( ) where nullVariable == null select x ;
59
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
59
+ await ( ExpectAllAsync ( q ) ) ;
60
60
q = from x in session . Query < AnotherEntity > ( ) where notNullVariable == null select x ;
61
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
61
+ await ( ExpectNoneAsync ( q ) ) ;
62
62
63
63
// Null against columns
64
64
q = from x in session . Query < AnotherEntity > ( ) where x . Input == null select x ;
65
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
65
+ await ( ExpectInputIsNullAsync ( q ) ) ;
66
66
q = from x in session . Query < AnotherEntity > ( ) where null == x . Input select x ;
67
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
67
+ await ( ExpectInputIsNullAsync ( q ) ) ;
68
68
69
69
// All null pairings with two columns.
70
70
q = from x in session . Query < AnotherEntity > ( ) where x . Input == null && x . Output == null select x ;
71
- await ( ExpectAsync ( q , BothNull , CancellationToken . None ) ) ;
71
+ await ( ExpectAsync ( q , BothNull ) ) ;
72
72
q = from x in session . Query < AnotherEntity > ( ) where x . Input != null && x . Output == null select x ;
73
- await ( ExpectAsync ( q , InputSet , CancellationToken . None ) ) ;
73
+ await ( ExpectAsync ( q , InputSet ) ) ;
74
74
q = from x in session . Query < AnotherEntity > ( ) where x . Input == null && x . Output != null select x ;
75
- await ( ExpectAsync ( q , OutputSet , CancellationToken . None ) ) ;
75
+ await ( ExpectAsync ( q , OutputSet ) ) ;
76
76
q = from x in session . Query < AnotherEntity > ( ) where x . Input != null && x . Output != null select x ;
77
- await ( ExpectAsync ( q , BothSame , BothDifferent , CancellationToken . None ) ) ;
77
+ await ( ExpectAsync ( q , BothSame , BothDifferent ) ) ;
78
78
79
79
// Variables against variables
80
80
q = from x in session . Query < AnotherEntity > ( ) where nullVariable == nullVariable2 select x ;
81
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
81
+ await ( ExpectAllAsync ( q ) ) ;
82
82
q = from x in session . Query < AnotherEntity > ( ) where nullVariable == notNullVariable select x ;
83
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
83
+ await ( ExpectNoneAsync ( q ) ) ;
84
84
q = from x in session . Query < AnotherEntity > ( ) where notNullVariable == nullVariable select x ;
85
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
85
+ await ( ExpectNoneAsync ( q ) ) ;
86
86
87
87
//// Variables against columns
88
88
q = from x in session . Query < AnotherEntity > ( ) where nullVariable == x . Input select x ;
89
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
89
+ await ( ExpectInputIsNullAsync ( q ) ) ;
90
90
q = from x in session . Query < AnotherEntity > ( ) where notNullVariable == x . Input select x ;
91
- await ( ExpectAsync ( q , InputSet , BothDifferent , CancellationToken . None ) ) ;
91
+ await ( ExpectAsync ( q , InputSet , BothDifferent ) ) ;
92
92
q = from x in session . Query < AnotherEntity > ( ) where x . Input == nullVariable select x ;
93
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
93
+ await ( ExpectInputIsNullAsync ( q ) ) ;
94
94
q = from x in session . Query < AnotherEntity > ( ) where x . Input == notNullVariable select x ;
95
- await ( ExpectAsync ( q , InputSet , BothDifferent , CancellationToken . None ) ) ;
95
+ await ( ExpectAsync ( q , InputSet , BothDifferent ) ) ;
96
96
97
97
// Columns against columns
98
98
q = from x in session . Query < AnotherEntity > ( ) where x . Input == x . Output select x ;
99
- await ( ExpectAsync ( q , BothSame , BothNull , CancellationToken . None ) ) ;
99
+ await ( ExpectAsync ( q , BothSame , BothNull ) ) ;
100
100
}
101
101
102
102
[ Test ]
@@ -110,51 +110,51 @@ public async Task NullInequalityAsync()
110
110
111
111
// Null literal against itself
112
112
q = from x in session . Query < AnotherEntity > ( ) where null != null select x ;
113
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
113
+ await ( ExpectNoneAsync ( q ) ) ;
114
114
115
115
// Null against constants
116
116
q = from x in session . Query < AnotherEntity > ( ) where null != "value" select x ;
117
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
117
+ await ( ExpectAllAsync ( q ) ) ;
118
118
q = from x in session . Query < AnotherEntity > ( ) where "value" != null select x ;
119
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
119
+ await ( ExpectAllAsync ( q ) ) ;
120
120
121
121
// Null against variables
122
122
q = from x in session . Query < AnotherEntity > ( ) where null != nullVariable select x ;
123
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
123
+ await ( ExpectNoneAsync ( q ) ) ;
124
124
q = from x in session . Query < AnotherEntity > ( ) where null != notNullVariable select x ;
125
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
125
+ await ( ExpectAllAsync ( q ) ) ;
126
126
q = from x in session . Query < AnotherEntity > ( ) where nullVariable != null select x ;
127
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
127
+ await ( ExpectNoneAsync ( q ) ) ;
128
128
q = from x in session . Query < AnotherEntity > ( ) where notNullVariable != null select x ;
129
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
129
+ await ( ExpectAllAsync ( q ) ) ;
130
130
131
131
// Null against columns.
132
132
q = from x in session . Query < AnotherEntity > ( ) where x . Input != null select x ;
133
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
133
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
134
134
q = from x in session . Query < AnotherEntity > ( ) where null != x . Input select x ;
135
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
135
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
136
136
137
137
// Variables against variables.
138
138
q = from x in session . Query < AnotherEntity > ( ) where nullVariable != nullVariable2 select x ;
139
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
139
+ await ( ExpectNoneAsync ( q ) ) ;
140
140
q = from x in session . Query < AnotherEntity > ( ) where nullVariable != notNullVariable select x ;
141
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
141
+ await ( ExpectAllAsync ( q ) ) ;
142
142
q = from x in session . Query < AnotherEntity > ( ) where notNullVariable != nullVariable select x ;
143
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
143
+ await ( ExpectAllAsync ( q ) ) ;
144
144
145
145
// Variables against columns.
146
146
q = from x in session . Query < AnotherEntity > ( ) where nullVariable != x . Input select x ;
147
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
147
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
148
148
q = from x in session . Query < AnotherEntity > ( ) where notNullVariable != x . Input select x ;
149
- await ( ExpectAsync ( q , BothSame , BothNull , OutputSet , CancellationToken . None ) ) ;
149
+ await ( ExpectAsync ( q , BothSame , BothNull , OutputSet ) ) ;
150
150
q = from x in session . Query < AnotherEntity > ( ) where x . Input != nullVariable select x ;
151
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
151
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
152
152
q = from x in session . Query < AnotherEntity > ( ) where x . Input != notNullVariable select x ;
153
- await ( ExpectAsync ( q , BothSame , OutputSet , BothNull , CancellationToken . None ) ) ;
153
+ await ( ExpectAsync ( q , BothSame , OutputSet , BothNull ) ) ;
154
154
155
155
// Columns against columns
156
156
q = from x in session . Query < AnotherEntity > ( ) where x . Input != x . Output select x ;
157
- await ( ExpectAsync ( q , BothDifferent , InputSet , OutputSet , CancellationToken . None ) ) ;
157
+ await ( ExpectAsync ( q , BothDifferent , InputSet , OutputSet ) ) ;
158
158
}
159
159
160
160
[ Test ]
@@ -168,61 +168,61 @@ public async Task NullEqualityInvertedAsync()
168
168
169
169
// Null literal against itself
170
170
q = from x in session . Query < AnotherEntity > ( ) where ! ( null == null ) select x ;
171
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
171
+ await ( ExpectNoneAsync ( q ) ) ;
172
172
173
173
// Null against constants
174
174
q = from x in session . Query < AnotherEntity > ( ) where ! ( null == "value" ) select x ;
175
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
175
+ await ( ExpectAllAsync ( q ) ) ;
176
176
q = from x in session . Query < AnotherEntity > ( ) where ! ( "value" == null ) select x ;
177
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
177
+ await ( ExpectAllAsync ( q ) ) ;
178
178
179
179
// Null against variables
180
180
q = from x in session . Query < AnotherEntity > ( ) where ! ( null == nullVariable ) select x ;
181
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
181
+ await ( ExpectNoneAsync ( q ) ) ;
182
182
q = from x in session . Query < AnotherEntity > ( ) where ! ( null == notNullVariable ) select x ;
183
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
183
+ await ( ExpectAllAsync ( q ) ) ;
184
184
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable == null ) select x ;
185
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
185
+ await ( ExpectNoneAsync ( q ) ) ;
186
186
q = from x in session . Query < AnotherEntity > ( ) where ! ( notNullVariable == null ) select x ;
187
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
187
+ await ( ExpectAllAsync ( q ) ) ;
188
188
189
189
// Null against columns
190
190
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input == null ) select x ;
191
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
191
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
192
192
q = from x in session . Query < AnotherEntity > ( ) where ! ( null == x . Input ) select x ;
193
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
193
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
194
194
195
195
// All null pairings with two columns.
196
196
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input == null && x . Output == null ) select x ;
197
- await ( ExpectAsync ( q , InputSet , OutputSet , BothSame , BothDifferent , CancellationToken . None ) ) ;
197
+ await ( ExpectAsync ( q , InputSet , OutputSet , BothSame , BothDifferent ) ) ;
198
198
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input != null && x . Output == null ) select x ;
199
- await ( ExpectAsync ( q , OutputSet , BothNull , BothSame , BothDifferent , CancellationToken . None ) ) ;
199
+ await ( ExpectAsync ( q , OutputSet , BothNull , BothSame , BothDifferent ) ) ;
200
200
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input == null && x . Output != null ) select x ;
201
- await ( ExpectAsync ( q , InputSet , BothSame , BothDifferent , BothNull , CancellationToken . None ) ) ;
201
+ await ( ExpectAsync ( q , InputSet , BothSame , BothDifferent , BothNull ) ) ;
202
202
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input != null && x . Output != null ) select x ;
203
- await ( ExpectAsync ( q , InputSet , OutputSet , BothNull , CancellationToken . None ) ) ;
203
+ await ( ExpectAsync ( q , InputSet , OutputSet , BothNull ) ) ;
204
204
205
205
// Variables against variables
206
206
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable == nullVariable2 ) select x ;
207
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
207
+ await ( ExpectNoneAsync ( q ) ) ;
208
208
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable == notNullVariable ) select x ;
209
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
209
+ await ( ExpectAllAsync ( q ) ) ;
210
210
q = from x in session . Query < AnotherEntity > ( ) where ! ( notNullVariable == nullVariable ) select x ;
211
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
211
+ await ( ExpectAllAsync ( q ) ) ;
212
212
213
213
// Variables against columns
214
214
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable == x . Input ) select x ;
215
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
215
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
216
216
q = from x in session . Query < AnotherEntity > ( ) where ! ( notNullVariable == x . Input ) select x ;
217
- await ( ExpectAsync ( q , BothSame , CancellationToken . None ) ) ;
217
+ await ( ExpectAsync ( q , BothSame ) ) ;
218
218
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input == nullVariable ) select x ;
219
- await ( ExpectInputIsNotNullAsync ( q , CancellationToken . None ) ) ;
219
+ await ( ExpectInputIsNotNullAsync ( q ) ) ;
220
220
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input == notNullVariable ) select x ;
221
- await ( ExpectAsync ( q , BothSame , CancellationToken . None ) ) ;
221
+ await ( ExpectAsync ( q , BothSame ) ) ;
222
222
223
223
// Columns against columns
224
224
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input == x . Output ) select x ;
225
- await ( ExpectAsync ( q , BothDifferent , CancellationToken . None ) ) ;
225
+ await ( ExpectAsync ( q , BothDifferent ) ) ;
226
226
}
227
227
228
228
[ Test ]
@@ -236,76 +236,76 @@ public async Task NullInequalityInvertedAsync()
236
236
237
237
// Null literal against itself
238
238
q = from x in session . Query < AnotherEntity > ( ) where ! ( null != null ) select x ;
239
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
239
+ await ( ExpectAllAsync ( q ) ) ;
240
240
241
241
// Null against constants
242
242
q = from x in session . Query < AnotherEntity > ( ) where ! ( null != "value" ) select x ;
243
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
243
+ await ( ExpectNoneAsync ( q ) ) ;
244
244
q = from x in session . Query < AnotherEntity > ( ) where ! ( "value" != null ) select x ;
245
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
245
+ await ( ExpectNoneAsync ( q ) ) ;
246
246
247
247
// Null against variables
248
248
q = from x in session . Query < AnotherEntity > ( ) where ! ( null != nullVariable ) select x ;
249
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
249
+ await ( ExpectAllAsync ( q ) ) ;
250
250
q = from x in session . Query < AnotherEntity > ( ) where ! ( null != notNullVariable ) select x ;
251
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
251
+ await ( ExpectNoneAsync ( q ) ) ;
252
252
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable != null ) select x ;
253
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
253
+ await ( ExpectAllAsync ( q ) ) ;
254
254
q = from x in session . Query < AnotherEntity > ( ) where ! ( notNullVariable != null ) select x ;
255
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
255
+ await ( ExpectNoneAsync ( q ) ) ;
256
256
257
257
// Null against columns.
258
258
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input != null ) select x ;
259
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
259
+ await ( ExpectInputIsNullAsync ( q ) ) ;
260
260
q = from x in session . Query < AnotherEntity > ( ) where ! ( null != x . Input ) select x ;
261
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
261
+ await ( ExpectInputIsNullAsync ( q ) ) ;
262
262
263
263
// Variables against variables.
264
264
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable != nullVariable2 ) select x ;
265
- await ( ExpectAllAsync ( q , CancellationToken . None ) ) ;
265
+ await ( ExpectAllAsync ( q ) ) ;
266
266
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable != notNullVariable ) select x ;
267
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
267
+ await ( ExpectNoneAsync ( q ) ) ;
268
268
q = from x in session . Query < AnotherEntity > ( ) where ! ( notNullVariable != nullVariable ) select x ;
269
- await ( ExpectNoneAsync ( q , CancellationToken . None ) ) ;
269
+ await ( ExpectNoneAsync ( q ) ) ;
270
270
271
271
// Variables against columns.
272
272
q = from x in session . Query < AnotherEntity > ( ) where ! ( nullVariable != x . Input ) select x ;
273
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
273
+ await ( ExpectInputIsNullAsync ( q ) ) ;
274
274
q = from x in session . Query < AnotherEntity > ( ) where ! ( notNullVariable != x . Input ) select x ;
275
- await ( ExpectAsync ( q , InputSet , BothDifferent , CancellationToken . None ) ) ;
275
+ await ( ExpectAsync ( q , InputSet , BothDifferent ) ) ;
276
276
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input != nullVariable ) select x ;
277
- await ( ExpectInputIsNullAsync ( q , CancellationToken . None ) ) ;
277
+ await ( ExpectInputIsNullAsync ( q ) ) ;
278
278
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input != notNullVariable ) select x ;
279
- await ( ExpectAsync ( q , InputSet , BothDifferent , CancellationToken . None ) ) ;
279
+ await ( ExpectAsync ( q , InputSet , BothDifferent ) ) ;
280
280
281
281
// Columns against columns
282
282
q = from x in session . Query < AnotherEntity > ( ) where ! ( x . Input != x . Output ) select x ;
283
- await ( ExpectAsync ( q , BothSame , CancellationToken . None ) ) ;
283
+ await ( ExpectAsync ( q , BothSame ) ) ;
284
284
}
285
285
286
- private Task ExpectAllAsync ( IQueryable < AnotherEntity > q , CancellationToken cancellationToken = default ( CancellationToken ) )
286
+ private Task ExpectAllAsync ( IQueryable < AnotherEntity > q )
287
287
{
288
- return ExpectAsync ( q , BothNull , BothSame , BothDifferent , InputSet , OutputSet , cancellationToken ) ;
288
+ return ExpectAsync ( q , BothNull , BothSame , BothDifferent , InputSet , OutputSet ) ;
289
289
}
290
290
291
- private Task ExpectNoneAsync ( IQueryable < AnotherEntity > q , CancellationToken cancellationToken = default ( CancellationToken ) )
291
+ private Task ExpectNoneAsync ( IQueryable < AnotherEntity > q )
292
292
{
293
- return ExpectAsync ( q , cancellationToken : cancellationToken ) ;
293
+ return ExpectAsync ( q ) ;
294
294
}
295
295
296
- private Task ExpectInputIsNullAsync ( IQueryable < AnotherEntity > q , CancellationToken cancellationToken = default ( CancellationToken ) )
296
+ private Task ExpectInputIsNullAsync ( IQueryable < AnotherEntity > q )
297
297
{
298
- return ExpectAsync ( q , BothNull , OutputSet , cancellationToken ) ;
298
+ return ExpectAsync ( q , BothNull , OutputSet ) ;
299
299
}
300
300
301
- private Task ExpectInputIsNotNullAsync ( IQueryable < AnotherEntity > q , CancellationToken cancellationToken = default ( CancellationToken ) )
301
+ private Task ExpectInputIsNotNullAsync ( IQueryable < AnotherEntity > q )
302
302
{
303
- return ExpectAsync ( q , InputSet , BothSame , BothDifferent , cancellationToken ) ;
303
+ return ExpectAsync ( q , InputSet , BothSame , BothDifferent ) ;
304
304
}
305
305
306
- private async Task ExpectAsync ( IQueryable < AnotherEntity > q , params AnotherEntity [ ] entities , CancellationToken cancellationToken = default ( CancellationToken ) )
306
+ private async Task ExpectAsync ( IQueryable < AnotherEntity > q , params AnotherEntity [ ] entities )
307
307
{
308
- IList < AnotherEntity > results = ( await ( q . ToListAsync ( cancellationToken ) ) ) . OrderBy ( l=> Key ( l ) ) . ToList ( ) ;
308
+ IList < AnotherEntity > results = ( await ( q . ToListAsync ( ) ) ) . OrderBy ( l=> Key ( l ) ) . ToList ( ) ;
309
309
IList < AnotherEntity > check = entities . OrderBy ( l => Key ( l ) ) . ToList ( ) ;
310
310
311
311
Assert . AreEqual ( check . Count , results . Count ) ;
0 commit comments