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;

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