26 lines
867 B
C#
26 lines
867 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Vendors;
|
|
using Nop.Data.Extensions;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Vendors;
|
|
|
|
/// <summary>
|
|
/// Represents a vendor attribute value entity builder
|
|
/// </summary>
|
|
public partial class VendorAttributeValueBuilder : NopEntityBuilder<VendorAttributeValue>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table
|
|
.WithColumn(nameof(VendorAttributeValue.Name)).AsString(400).NotNullable()
|
|
.WithColumn(NameCompatibilityManager.GetColumnName(typeof(VendorAttributeValue), nameof(VendorAttributeValue.AttributeId))).AsInt32().ForeignKey<VendorAttribute>();
|
|
}
|
|
|
|
#endregion
|
|
} |