Quantcast
Channel: Active questions tagged nuget-package - Stack Overflow
Viewing all articles
Browse latest Browse all 3067

Microsoft.EntityFrameworkCore.Migrations;

$
0
0

I've such a problem.I added migration but this error occurred:enter image description here

enter image description here

enter image description here

Repository:enter image description here

API:enter image description here

using Hospital.Core.Entities; using Microsoft.EntityFrameworkCore;namespace Hospital.Repositories.Data {    public class ApplicationDbContext : DbContext    {        public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options)            : base(options)        {        }        //////    } }

program.cs:

builder.Services.AddDbContext<ApplicationDbContext>(options =>     options.UseNpgsql(builder.Configuration.GetConnectionString("HospitalConnection")));

I reinstalled the frameworks. Multiple actions with packages also with package manager


Viewing all articles
Browse latest Browse all 3067

Trending Articles