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 SearchTerm : BaseEntity
{
///
/// Gets or sets the keyword
///
public string Keyword { get; set; }
///
/// Gets or sets the store identifier
///
public int StoreId { get; set; }
///
/// Gets or sets search count
///
public int Count { get; set; }
}