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