Try your search with a different keyword or use * as a wildcard.
@using Nop.Services.Orders;
@model List
@foreach (var item in Model ?? new())
{
@item.Name:
@(item.Value ?? string.Empty)
}