Webiant Logo Webiant Logo
  1. No results found.

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

ProductBuilder.cs

using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Catalog;

namespace Nop.Data.Mapping.Builders.Catalog;

/// 
/// Represents a product entity builder
/// 
public partial class ProductBuilder : NopEntityBuilder
{
    #region Methods

    /// 
    /// Apply entity configuration
    /// 
    /// Create table expression builder
    public override void MapEntity(CreateTableExpressionBuilder table)
    {
        table
            .WithColumn(nameof(Product.Name)).AsString(400).NotNullable()
            .WithColumn(nameof(Product.MetaKeywords)).AsString(400).Nullable()
            .WithColumn(nameof(Product.MetaTitle)).AsString(400).Nullable()
            .WithColumn(nameof(Product.Sku)).AsString(400).Nullable()
            .WithColumn(nameof(Product.ManufacturerPartNumber)).AsString(400).Nullable()
            .WithColumn(nameof(Product.Gtin)).AsString(400).Nullable()
            .WithColumn(nameof(Product.RequiredProductIds)).AsString(1000).Nullable()
            .WithColumn(nameof(Product.AllowedQuantities)).AsString(1000).Nullable();
    }

    #endregion
}