-
Notifications
You must be signed in to change notification settings - Fork 0
Parte 4
WILSON DE OLIVEIRA JUNIOR edited this page Mar 9, 2020
·
3 revisions
[Voltar]
- Na raiz do projeto Taste.DataAccess crie uma nova classe chamada ApplicationDbContext.cs e deixe essa classe com a aparencia abaixo:
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore;
namespace Taste.DataAccess
{
public class ApplicationDbContext : IdentityDbContext
{
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options): base(options)
{
}
}
}[Voltar]