Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

INameCompatibility.cs

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