Quotidien Shaarli

Tous les liens d'un jour sur une page.

July 28, 2022

htmx-aspnetcore/JetSwagStore at main · khalidabuhakmeh/htmx-aspnetcore · GitHub
thumbnail

HTMX & ASP.NET Core Samples. Contribute to khalidabuhakmeh/htmx-aspnetcore development by creating an account on GitHub.

dbcontext in console app

string connectionstring = "Server=(localdb)\mssqllocaldb;Database=aspnet-WebApplication1-pouet;Trusted_Connection=True;MultipleActiveResultSets=true";
var sqlOptions = new DbContextOptionsBuilder<ApplicationDbContext>()
.UseSqlServer(connectionstring)
.Options;

using (ApplicationDbContext context = new ApplicationDbContext(sqlOptions))
{
// do sth
}