27 lines
748 B
C#
27 lines
748 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Localization;
|
|
using Nop.Core.Domain.Polls;
|
|
using Nop.Data.Extensions;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Polls;
|
|
|
|
/// <summary>
|
|
/// Represents a poll entity builder
|
|
/// </summary>
|
|
public partial class PollBuilder : NopEntityBuilder<Poll>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table)
|
|
{
|
|
table
|
|
.WithColumn(nameof(Poll.Name)).AsString(int.MaxValue).NotNullable()
|
|
.WithColumn(nameof(Poll.LanguageId)).AsInt32().ForeignKey<Language>();
|
|
}
|
|
|
|
#endregion
|
|
} |