21 lines
697 B
C#
21 lines
697 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
namespace Persistence.Database.Model;
|
|
|
|
public static class DependencyInjection
|
|
{
|
|
public static IServiceCollection AddPersistenceDbContext(this IServiceCollection services, IConfiguration configuration)
|
|
{
|
|
string connectionStringName = "DefaultConnection";
|
|
|
|
services.AddDbContext<PersistenceDbContext>(options =>
|
|
options.UseNpgsql(configuration.GetConnectionString(connectionStringName)));
|
|
|
|
services.AddScoped<DbContext>(provider => provider.GetRequiredService<PersistenceDbContext>());
|
|
|
|
return services;
|
|
}
|
|
}
|