Webiant Logo Webiant Logo
  1. No results found.

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

IEntityBuilder.cs

using FluentMigrator.Builders.Create.Table;

namespace Nop.Data.Mapping.Builders;

/// 
/// Represents database entity builder
/// 
public partial interface IEntityBuilder
{
    /// 
    /// Apply entity configuration
    /// 
    /// Create table expression builder
    void MapEntity(CreateTableExpressionBuilder table);
}