Para mis compañeros que esten tomando recien este curso el archivo Programs.cs y StartUp.cs son lo mismo en la version mas reciente de Net Core. y la forma de la configuracion hasta el momento del curso es la siguiente sin errores a la fecha,
using NetCoreMVC.Models;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.EntityFrameworkCore;
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddControllersWithViews();
builder.Services.AddDbContext<EscuelaContext>(options => options.UseInMemoryDatabase("testDB"));
var app = builder.Build();
using(var scope=app.Services.CreateScope()){
var serv=scope.ServiceProvider;
try
{
var contex=serv.GetRequiredService<EscuelaContext>();
contex.Database.EnsureCreated();
}
catch (System.Exception)
{
throw;
}
}
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Home/Error");
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.MapControllerRoute(
name: "default",
pattern: "{controller=Alumno}/{action=Index}/{id?}");
app.Run();
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?