From 7efc63c225dce77036e9e50c84e4e7a409269176 Mon Sep 17 00:00:00 2001 From: luolangaga <2667210109@qq.com> Date: Sat, 17 Aug 2024 22:56:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E8=8E=B7=E5=8F=96=E6=88=91?= =?UTF-8?q?=E7=9A=84=E7=A7=AF=E5=88=86=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- asg_form/Controllers/Store/Storehttp.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } }