20 lines
679 B
C#
20 lines
679 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
using Nop.Core;
|
|
|
|
namespace Nop.Data.Mapping.Builders;
|
|
|
|
/// <summary>
|
|
/// Represents base entity builder
|
|
/// </summary>
|
|
/// <typeparam name="TEntity">Entity type</typeparam>
|
|
/// <remarks>
|
|
/// "Entity type <see cref="TEntity"/>" is needed to determine the right entity builder for a specific entity type
|
|
/// </remarks>
|
|
public abstract partial class NopEntityBuilder<TEntity> : IEntityBuilder where TEntity : BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
public abstract void MapEntity(CreateTableExpressionBuilder table);
|
|
} |