using FluentMigrator.Builders.Create.Table; namespace Nop.Data.Mapping.Builders; /// /// Represents database entity builder /// public partial interface IEntityBuilder { /// /// Apply entity configuration /// /// Create table expression builder void MapEntity(CreateTableExpressionBuilder table); }