mirror of
https://github.com/markjprice/cs11dotnet7.git
synced 2025-12-06 05:32:03 +01:00
14 lines
280 B
Plaintext
14 lines
280 B
Plaintext
@page
|
|
@using Packt.Shared
|
|
@inject NorthwindContext db
|
|
@{
|
|
string title = "Orders";
|
|
ViewData["Title"] = $"Northwind B2B - {title}";
|
|
}
|
|
<div class="row">
|
|
<h1 class="display-2">@title</h1>
|
|
<p>
|
|
There are @db.Orders.Count() orders in the Northwind database.
|
|
</p>
|
|
</div>
|