Discord.Net/docs/guides/other_libs/samples/DbContextDepInjection.cs

10 lines
257 B
C#
Raw Permalink Normal View History

2024-06-12 22:43:59 -07:00
private static ServiceProvider ConfigureServices()
{
return new ServiceCollection()
.AddDbContext<ApplicationDbContext>(
options => options.UseNpgsql("Your connection string")
)
[...]
.BuildServiceProvider();
}