File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/NHibernate.Test/Async/Linq Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -223,15 +223,15 @@ public async Task CanProjectManyCollectionsAsync()
223
223
var result = await ( query . ToListAsync ( ) ) ;
224
224
Assert . That ( result . Count , Is . EqualTo ( 2155 ) ) ;
225
225
}
226
-
226
+
227
227
[ Test ]
228
228
public async Task CanProjectCollectionsAsync ( )
229
229
{
230
230
var query = db . Orders . Select ( o => o . OrderLines ) ;
231
231
var result = await ( query . ToListAsync ( ) ) ;
232
232
Assert . That ( result . Count , Is . EqualTo ( 830 ) ) ;
233
233
}
234
-
234
+
235
235
[ Test ]
236
236
public async Task CanProjectCollectionsInsideAnonymousTypeAsync ( )
237
237
{
@@ -240,7 +240,7 @@ public async Task CanProjectCollectionsInsideAnonymousTypeAsync()
240
240
Assert . That ( NHibernateUtil . IsInitialized ( result [ 0 ] . OrderLines ) , Is . True ) ;
241
241
Assert . That ( result . Count , Is . EqualTo ( 830 ) ) ;
242
242
}
243
-
243
+
244
244
[ Test ]
245
245
public async Task ProjectAnonymousTypeWithCollectionAsync ( )
246
246
{
You can’t perform that action at this time.
0 commit comments