Skip to content

Instantly share code, notes, and snippets.

@alefra88
Created July 30, 2024 16:30
Show Gist options
  • Save alefra88/b196e98288e2bf8898688f3af18bba8a to your computer and use it in GitHub Desktop.
Save alefra88/b196e98288e2bf8898688f3af18bba8a to your computer and use it in GitHub Desktop.
builder service into Program MVC core
// Add services to the container.
builder.Services.AddDbContext<NameContext>(options =>
options.UseSqlServer(builder.Configuration.GetConnectionString("DBConnectionName")));
// Add Authorization services
builder.Services.AddAuthorization();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment