File tree Expand file tree Collapse file tree
sample/AutoQueryApiDemo/Controllers Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ dotnet add package AutoQuery.AspNetCore
9696 4 . Example Output :
9797 ```plaintext
9898 Filtered Users :
99- 4 : Bob Brown
10099 3 : Alice Johnson
101100 ```
102101
@@ -165,7 +164,7 @@ dotnet add package AutoQuery.AspNetCore
165164 public IActionResult Get (UserQueryOptions queryOptions )
166165 {
167166 var result = users .AsQueryable ()
168- .ApplyQueryPaged (_queryProcessor , queryOptions );
167+ .ApplyQueryPagedResult (_queryProcessor , queryOptions );
169168 return Ok (result );
170169 }
171170 }
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ public UsersController(IQueryProcessor queryProcessor)
3131 public IActionResult Get ( UserQueryOptions queryOptions )
3232 {
3333 var result = users . AsQueryable ( )
34- . ApplyQueryPaged ( _queryProcessor , queryOptions ) ;
34+ . ApplyQueryPagedResult ( _queryProcessor , queryOptions ) ;
3535 return Ok ( result ) ;
3636 }
3737}
You can’t perform that action at this time.
0 commit comments