@page
@using Northwind.Web.Pages
@using Packt.Shared
@model CustomersModel
@{
string title = "Customers by Country";
ViewData["Title"] = $"Northwind B2B - {title}";
}
@title
Exercise 14.2 – Practice building a data-driven web page
@if (Model.CustomersByCountry is not null)
{
@foreach (IGrouping
cbc in Model.CustomersByCountry)
{
}
}