akveo / akveo/ngx-admin-bundle-support

Get Users or Orders to slow

Open
#69 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
TypeScript
Stars
56
Forks
30
PR merge metrics
No merged PRs in 30d

Description

Hello

When I Get Grid orders or Users getting data it to slow, method call is about 25429 MS

[HttpGet]
[Route("")]
[Authorize(Policy = "AdminOnly")]
public async Task GetDataForGrid([FromQuery]UsersGridFilter filter)
{
Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
try
{
filter = filter ?? new UsersGridFilter();
var users = await userService.GetDataForGrid(filter);
return Ok(users);
}
finally
{
Debug.WriteLine(stopwatch.ElapsedMilliseconds);
}


}

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.