EF core를 처음 사용하고 ASP.NET Core 프로젝트에서 작동하도록 노력하고 있습니다.
startup.cs
구성에서 DbContext
연결 문자열을 사용 하도록 구성하려고 할 때 위의 오류가 발생 합니다. 이 튜토리얼을 따르고 있습니다 : 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");
}
모든 온라인 조사 결과가 누락 된 참조를 가리키고 있지만 누락 된 참조를 찾을 수없는 것 같습니다 ( image 참조 ).