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; } }