Try your search with a different keyword or use * as a wildcard.
namespace Nop.Data.Mapping;
/// <summary>
/// Backward compatibility of table naming
/// </summary>
public partial interface INameCompatibility
{
/// <summary>
/// Gets table name for mapping with the type
/// </summary>
Dictionary<Type, string> TableNames { get; }
/// <summary>
/// Gets column name for mapping with the entity's property and type
/// </summary>
Dictionary<(Type, string), string> ColumnName { get; }
}