29 lines
612 B
C#
29 lines
612 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using ModelStateError.Data;
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
builder.Services.AddDbContext<ModelStateErrorContext>(options =>
|
|
options.UseInMemoryDatabase("Contacts"));
|
|
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
var app = builder.Build();
|
|
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
app.Run();
|