Try your search with a different keyword or use * as a wildcard.
using FluentMigrator.Builders.Create.Table;
using Nop.Core.Domain.Catalog;
using Nop.Core.Domain.Customers;
using Nop.Core.Domain.Stores;
using Nop.Data.Extensions;
namespace Nop.Data.Mapping.Builders.Catalog;
/// 
/// Represents a product review entity builder
///  
public partial class ProductReviewBuilder : NopEntityBuilder
{
    #region Methods
    /// 
    /// Apply entity configuration
    ///  
    /// Create table expression builder
    public override void MapEntity(CreateTableExpressionBuilder table)
    {
        table
            .WithColumn(nameof(ProductReview.CustomerId)).AsInt32().ForeignKey()
            .WithColumn(nameof(ProductReview.ProductId)).AsInt32().ForeignKey()
            .WithColumn(nameof(ProductReview.StoreId)).AsInt32().ForeignKey();
    }
    #endregion
}