Try your search with a different keyword or use * as a wildcard.
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Tax;
namespace Nop.Data.Mapping.Builders.Tax;
///
/// Represents tax category builder
///
public partial class TaxCategoryBuilder : NopEntityBuilder
{
#region Methods
///
/// Apply entity configuration
///
/// Create table expression builder
public override void MapEntity(CreateTableExpressionBuilder table)
{
table.WithColumn(nameof(TaxCategory.Name)).AsString(400).NotNullable();
}
#endregion
}