Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Common;
/// <summary>
/// Search term record (for statistics)
/// </summary>
public partial class SearchTermReportLine
{
/// <summary>
/// Gets or sets the keyword
/// </summary>
public string Keyword { get; set; }
/// <summary>
/// Gets or sets search count
/// </summary>
public int Count { get; set; }
}