Webiant Logo Webiant Logo
  1. No results found.

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

NopEntityBuilder.cs

using FluentMigrator.Builders.Create.Table;
using Nop.Core;

namespace Nop.Data.Mapping.Builders;

/// 
/// Represents base entity builder
/// 
/// Entity type
/// 
/// "Entity type " is needed to determine the right entity builder for a specific entity type
/// 
public abstract partial class NopEntityBuilder : IEntityBuilder where TEntity : BaseEntity
{
    /// 
    /// Apply entity configuration
    /// 
    /// Create table expression builder
    public abstract void MapEntity(CreateTableExpressionBuilder table);
}