Я новачок в ядрі EF, і я намагаюся змусити його працювати з моїм проектом ASP.NET Core.
Я отримую вищезгадану помилку в моєму, startup.cs
коли намагаюся налаштувати DbContext
використовувати рядок з'єднання від config. Я дотримуюся цього підручника: https://docs.microsoft.com/en-us/aspnet/core/data/ef-mvc/intro
Проблемний код у startup.cs
:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.SpaServices.Webpack;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using Microsoft.EntityFrameworkCore;
using tracV2.models;
using tracV2.data;
namespace tracV2
{
public class Startup
{
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc();
services.AddSingleton<IConfiguration>(Configuration);
string conn = Configuration.GetConnectionString("optimumDB");
services.AddDbContext<tracContext>(options => options.usesqlserver(conn));
}
UseSqlServer
Метод визнається , якщо я поклав його прямо в контексті:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
namespace tracV2.data
{
public class tracContext : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlServer("myrealconnectionstring");
}
Всі мої дослідження в Інтернеті вказують на відсутні згадані джерела, але я не можу зрозуміти, який з них я пропускаю ( див. Зображення ).