23 lines
749 B
C#
23 lines
749 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core.Domain.Directory;
|
|
|
|
namespace Nop.Data.Mapping.Builders.Directory;
|
|
|
|
/// <summary>
|
|
/// Represents a country entity builder
|
|
/// </summary>
|
|
public partial class CountryBuilder : NopEntityBuilder<Country>
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public override void MapEntity(CreateTableExpressionBuilder table) => table
|
|
.WithColumn(nameof(Country.Name)).AsString(100).NotNullable()
|
|
.WithColumn(nameof(Country.TwoLetterIsoCode)).AsString(2).Nullable()
|
|
.WithColumn(nameof(Country.ThreeLetterIsoCode)).AsString(3).Nullable();
|
|
|
|
#endregion
|
|
} |