Try your search with a different keyword or use * as a wildcard.
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Vendors;
using Nop.Data.Extensions;
namespace Nop.Data.Mapping.Builders.Vendors;
///
/// Represents a vendor attribute value entity builder
///
public partial class VendorAttributeValueBuilder : NopEntityBuilder
{
#region Methods
///
/// Apply entity configuration
///
/// Create table expression builder
public override void MapEntity(CreateTableExpressionBuilder table)
{
table
.WithColumn(nameof(VendorAttributeValue.Name)).AsString(400).NotNullable()
.WithColumn(NameCompatibilityManager.GetColumnName(typeof(VendorAttributeValue), nameof(VendorAttributeValue.AttributeId))).AsInt32().ForeignKey();
}
#endregion
}