Не получается выполнить миграцию в библиотеке. Выдает ошибку: "Exception has been thrown by the target of an invocation."
using System;
using Microsoft.EntityFrameworkCore;
using System.ComponentModel.DataAnnotations.Schema;
namespace PHStore
{
public class ContextDb : DbContext
{
public DbSet<Item> Items { get; set; }
public ContextDb():base()
{
Database.EnsureCreated();
}
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlServer("Server=(LocalDb)\\MSSQLLocalDB;Database=PHdb;Trusted_Connection=True;");
}
}
}