29 lines
1.0 KiB
C#
29 lines
1.0 KiB
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Common;
|
|
using Nop.Core.Domain.Customers;
|
|
using Nop.Data.Extensions;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Customers;
|
|
|
|
/// <summary>
|
|
/// Represents a customer address mapping entity builder
|
|
/// </summary>
|
|
public partial class CustomerAddressMappingBuilder : NopEntityBuilder<CustomerAddressMapping>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table
|
|
.WithColumn(NameCompatibilityManager.GetColumnName(typeof(CustomerAddressMapping), nameof(CustomerAddressMapping.AddressId)))
|
|
.AsInt32().ForeignKey<Address>().PrimaryKey()
|
|
.WithColumn(NameCompatibilityManager.GetColumnName(typeof(CustomerAddressMapping), nameof(CustomerAddressMapping.CustomerId)))
|
|
.AsInt32().ForeignKey<Customer>().PrimaryKey();
|
|
}
|
|
|
|
#endregion
|
|
} |