0
私のデータベースからユーザの数を取得したいのですが、その数をボタンに表示したいのですが、どうすればasp.netで行うことができますかコア??利用者の数についてはDBからユーザ数を取得し、.netコアのボタンに表示する方法
私のデータベースからユーザの数を取得したいのですが、その数をボタンに表示したいのですが、どうすればasp.netで行うことができますかコア??利用者の数についてはDBからユーザ数を取得し、.netコアのボタンに表示する方法
、あなたはボタン数を示すために
public class HomeController : Controller
{
private ApplicationDbContext _context;
public HomeController(ApplicationDbContext context)
{
_context = context;
}
public IActionResult Index()
{
return View();
}
public IActionResult About()
{
ViewData["UserCount"] = _context.Users.Count();
ViewData["Message"] = "Hello Word";
return View();
}
}
を試みることができる、あなたはそれが感謝の作品
@{
ViewData["Title"] = "About";
}
<h2>@ViewData["Title"].</h2>
<h3>@ViewData["Message"]</h3>
<p>Use this area to provide additional information.</p>
<button>@ViewData["UserCount"]</button>
グレートを試みることができる:) –