소개
게시글
질문&답변
2024.10.11
Unable to create an object of type 'ApplicationDbContext'
using Microsoft.EntityFrameworkCore; using WebApi.Data; var builder = WebApplication.CreateBuilder(args); // Add services to the container. builder.Services.AddRazorPages(); // .NET Core 최신버전용 AddDbContext 방법. builder.Services.AddDbContext(options => options.UseSqlServer(builder.Configuration.GetConnectionString("DefaultConnection"))); var app = builder.Build(); // Configure the HTTP request pipeline. if (!app.Environment.IsDevelopment()) { app.UseExceptionHandler("/Error"); // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts. app.UseHsts(); } app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseRouting(); app.UseAuthorization(); app.MapRazorPages(); app.Run();.NET Core의 최신 버전에서는 Startup이 더이상 사용되지 않아서 말씀하신대로 Program.cs에 다음과 같이 입력하여 처리하면 됩니다.영상과 똑같이 하셨더라면, 상단에 using을 다음과 같이 작성해주시면 됩니다. using Microsoft.EntityFrameworkCore; using WebApi.Data;이 후 UsesSqlServer가 또 말썽일텐데 이는 강의에서 보신 것처럼 Microsoft.EntityFrameworkCore.sqlserver 설치하면 문제없이 진행됩니다~!
- 0
- 2
- 526
고민있어요
2021.03.31 00:56
[잡담] 게임켜놓고 녹화하신거같아요~
- 0
- 1
- 440
질문&답변
2021.01.29
CalcPathFromParent 에서 에러가 납니다.
문제점까지 이렇게 친절하게 알려주셨으니 제가 꼭 해결해보겠습니다! 감사합니다!
- 0
- 2
- 260
질문&답변
2020.10.18
Program에서 플레이어를 불러오지 못합니다.
앗 선생님~ 댓글 올려주시기 전에 문제점을 확인해서 수정해보니 잘 되고있습니다. 주말에 쉬고계시는데 번거롭게 해서 죄송합니다 :) 감사합니다!
- 0
- 2
- 386