修复获取我的积分的bug

This commit is contained in:
luolangaga 2024-08-17 22:56:08 +08:00
parent d035d32811
commit 7efc63c225

View File

@ -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);
}
}