/
h0tnanny
/
DeliveryService
Обзор
Документация
Войти
/
h0tnanny
/
DeliveryService
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
DeliveryService.Persistence/DataContextFactory.cs
15 строк
551 B
Хатнянский Максим
add razor pages
13 мар 2024, 20:33
13 мар 2024, 20:33
570f7a3
Код
Авторство
О чём код?
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore.Design; namespace DeliveryService.Persistence; internal class DataContextFactory : IDesignTimeDbContextFactory<DeliveryDbContext> { public DeliveryDbContext CreateDbContext(string[] args) { var optionsBuilder = new DbContextOptionsBuilder<DeliveryDbContext>(); optionsBuilder.UseNpgsql("Host=localhost;Port=5432;Database=deliveryServices;Username=postgres;Password=postgres;"); return new DeliveryDbContext(optionsBuilder.Options); } }