skip to Main Content

There is an error in app.UseMigrationsEndPoint(), if this cant be solved can guide me to remove asp.net identity files (which is used to create login)

using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.HttpsPolicy; using Microsoft.AspNetCore.Identity; using Microsoft.AspNetCore.ResponseCompression; using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using OfflineEventManagment.Data; using OfflineEventManagment.Areas; using System; using System.Collections.Generic; using System.IO.Compression; using System.Linq; using System.Threading.Tasks; namespace OfflineEventManagment { public class Startup { public…

VIEW QUESTION
Back To Top
Search