Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PollAnswerBuilder.cs

using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Polls;
using Nop.Data.Extensions;

namespace Nop.Data.Mapping.Builders.Polls;

/// 
/// Represents a poll answer entity builder
/// 
public partial class PollAnswerBuilder : NopEntityBuilder
{
    #region Methods

    /// 
    /// Apply entity configuration
    /// 
    /// Create table expression builder
    public override void MapEntity(CreateTableExpressionBuilder table)
    {
        table
            .WithColumn(nameof(PollAnswer.Name)).AsString(int.MaxValue).NotNullable()
            .WithColumn(nameof(PollAnswer.PollId)).AsInt32().ForeignKey();
    }

    #endregion
}