File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
Async/NHSpecificTest/GH2559 Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -129,8 +129,7 @@ public async Task TestQueryCachingWithThenFetchManyAsync()
129
129
. Query < Person > ( )
130
130
. FetchMany ( p => p . Children )
131
131
. ThenFetchMany ( ch => ch . Pets )
132
- . FetchMany ( p => p . Cars ) as IQueryable < Person >
133
- ;
132
+ . FetchMany ( p => p . Cars ) as IQueryable < Person > ;
134
133
135
134
query = query . WithOptions ( opt =>
136
135
opt . SetCacheable ( true )
Original file line number Diff line number Diff line change @@ -118,8 +118,7 @@ public void TestQueryCachingWithThenFetchMany()
118
118
. Query < Person > ( )
119
119
. FetchMany ( p => p . Children )
120
120
. ThenFetchMany ( ch => ch . Pets )
121
- . FetchMany ( p => p . Cars ) as IQueryable < Person >
122
- ;
121
+ . FetchMany ( p => p . Cars ) as IQueryable < Person > ;
123
122
124
123
query = query . WithOptions ( opt =>
125
124
opt . SetCacheable ( true )
You can’t perform that action at this time.
0 commit comments