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