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