1
resposta

DbContext could not found

Estou com o erro abaixo: The type or namespace name 'DbContext' could not be found (are you missing a using directive or an assembly reference?)

using Microsoft.EntityFrameworkCore;
using System;

namespace Alura.Loja.Testes.ConsoleApp
{
    public class LojaContext : DbContext
    {
        public DbSet<Produto> Produtos { get; set; }

        protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
        {
            optionsBuilder.UseSqlServer("Server=(localdb)\\mssqllocaldb;Database=LojaDB;Trusted_Connection=true;");
        }

    }
}
1 resposta

Olá Giovanna,

Verifique se seu projeto tem a referência para o Entity Framework.

Caso não tenha instalado, utilize o comando abaixo no NuGet console para instalá-lo:

Install-Package Microsoft.EntityFrameworkCore.SqlServer