我需要传递摘要的 id 并获取特定人员的数据

问题描述 投票:0回答:1

以下是 ASP.NET Core 中的摘要代码:

public IActionResult Index()
{
     List<Order> order = _db.Order.GetAll().ToList();
     return View(order);
}

在这段代码中,我需要根据用户提出的记录获取摘要。

我需要根据提出数据或记录的id来获取数据

asp.net-core asp.net-core-mvc
1个回答
0
投票

您可以使用 DbContext.Find 方法从数据库中获取特定记录。

https://learn.microsoft.com/en-us/dotnet/api/microsoft.entityframeworkcore.dbcontext.find?view=efcore-8.0

© www.soinside.com 2019 - 2024. All rights reserved.