27 lines
847 B
C#
27 lines
847 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Catalog;
|
|
using Nop.Core.Domain.Customers;
|
|
using Nop.Data.Extensions;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Catalog;
|
|
|
|
/// <summary>
|
|
/// Represents a back in stock subscription entity builder
|
|
/// </summary>
|
|
public partial class BackInStockSubscriptionBuilder : NopEntityBuilder<BackInStockSubscription>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table
|
|
.WithColumn(nameof(BackInStockSubscription.CustomerId)).AsInt32().ForeignKey<Customer>()
|
|
.WithColumn(nameof(BackInStockSubscription.ProductId)).AsInt32().ForeignKey<Product>();
|
|
}
|
|
|
|
#endregion
|
|
} |