File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/NHibernate.Test/Async/Hql Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -346,9 +346,9 @@ public async Task NullableEntityProjectionAsync()
346
346
var withNullManyToOneList = await ( session . Query < NullableOwner > ( ) . Where ( x => x . ManyToOne == null ) . ToListAsync ( ) ) ;
347
347
var withNullManyToOneJoinedList =
348
348
await ( ( from x in session . Query < NullableOwner > ( )
349
- from x2 in session . Query < NullableOwner > ( )
350
- where x == x2 && x . ManyToOne == null && x . OneToOne . Name == null
351
- select x2 ) . ToListAsync ( ) ) ;
349
+ from x2 in session . Query < NullableOwner > ( )
350
+ where x == x2 && x . ManyToOne == null && x . OneToOne . Name == null
351
+ select x2 ) . ToListAsync ( ) ) ;
352
352
Assert . That ( fullList . Count , Is . EqualTo ( 2 ) ) ;
353
353
Assert . That ( withValidManyToOneList . Count , Is . EqualTo ( 0 ) ) ;
354
354
Assert . That ( withValidManyToOneList2 . Count , Is . EqualTo ( 0 ) ) ;
You can’t perform that action at this time.
0 commit comments