public class HiromiContextDesignFactory : IDesignTimeDbContextFactory<HiromiContext>
{
public HiromiContext CreateDbContext(string[] args)
{
var configuration = new ConfigurationBuilder()
.SetBasePath() // What is the path
.AddJsonFile("_config.json")
.Build();
var builder = new DbContextOptionsBuilder<HiromiContext>()
.UseNpgsql(configuration["connections:postgre"]);
return new HiromiContext(builder.Options);
}
}
My _config.json
находится в каталоге root другого проекта. Как я могу получить к нему доступ из текущего проекта?