15 lines
393 B
C#
15 lines
393 B
C#
using FluentMigrator.Builders.Create.Table;
|
|
|
|
namespace Nop.Data.Mapping.Builders;
|
|
|
|
/// <summary>
|
|
/// Represents database entity builder
|
|
/// </summary>
|
|
public partial interface IEntityBuilder
|
|
{
|
|
/// <summary>
|
|
/// Apply entity configuration
|
|
/// </summary>
|
|
/// <param name="table">Create table expression builder</param>
|
|
void MapEntity(CreateTableExpressionBuilder table);
|
|
} |