Try your search with a different keyword or use * as a wildcard.
using FluentMigrator;
using FluentMigrator.Expressions;
using FluentMigrator.Infrastructure;
namespace Nop.Data.Migrations;
/// 
/// Represents the migration context with a null implementation of a processor that does not do any work
///  
public class NullMigrationContext : IMigrationContext
{
    public IServiceProvider ServiceProvider { get; set; }
    public ICollection Expressions { get; set; } = new List();
    public IQuerySchema QuerySchema { get; set; }
    public string Connection { get; set; }
}