diff --git a/asg_form/Controllers/Store/Storehttp.cs b/asg_form/Controllers/Store/Storehttp.cs index fc87373..30d6729 100644 --- a/asg_form/Controllers/Store/Storehttp.cs +++ b/asg_form/Controllers/Store/Storehttp.cs @@ -126,7 +126,7 @@ namespace asg_form.Controllers.Store using (TestDbContext sb = new TestDbContext()) { - var a = sb.T_Storeinfo.Where(a=>a.buyerid==id).ToListAsync(); + var a = await sb.T_Storeinfo.Where(a=>a.buyerid==id).ToListAsync(); return Ok(a); } }