using Nop.Data.Mapping; namespace Nop.Plugin.Misc.TestPlugin.Mapping; public partial class NameCompatibility : INameCompatibility { /// /// Gets table name for mapping with the type /// public Dictionary TableNames => new(); /// /// Gets column name for mapping with the entity's property and type /// public Dictionary<(Type, string), string> ColumnName => new(); }