- SSD 복사
- asp.net Select
- ViewData
- 타임피커
- javascript redirection
- 하드 마이그레이션
- 말줄임표시
- ViewBag
- 맥 오라클설치
- php 캐쉬제거
- 바코드 생성하기
- javascript 유효성체크
- 바코드 스캔하기
- ASP.Net Core 404
- asp.net dropdownlist
- django 엑셀불러오기
- javascript 바코드 생성
- 강제이동
- XSS PHP
- 파일업로드 유효성체크
- asp.net core Select
- jquery 바코드
- TempData
- 파일업로드 체크
- 404에러페이지
- 하드 윈도우 복사
- XSS방어
- Mac Oracle
- jquery 바코드생성
- javascript 바코드스캔
웹개발자의 기지개
[ASP.Net Core] Your target project 'FastFood.Web' doesn't match your migrations assembly 'FastFood.Repository'. Either change your target project or change your migrations assembly. 본문
[ASP.Net Core] Your target project 'FastFood.Web' doesn't match your migrations assembly 'FastFood.Repository'. Either change your target project or change your migrations assembly.
http://portfolio.wonpaper.net 2023. 1. 26. 06:36Your target project 'FastFood.Web' doesn't match your migrations assembly 'FastFood.Repository'. Either change your target project or change your migrations assembly.
Change your migrations assembly by using DbContextOptionsBuilder. E.g. options.UseSqlServer(connection, b => b.MigrationsAssembly("FastFood.Web")). By default, the migrations assembly is the assembly containing the DbContext.
Change your target project to the migrations project by using the Package Manager Console's Default project drop-down list, or by executing "dotnet ef" from the directory containing the migrations project.
패키지 관리자 콘솔 상에서 마이그레이션을 시도할때 위와 같은 에러메세지를 만났다.
간단한 해결책은 패키지 관리자 콘솔 상에서 기본프로젝트를 FastFood.Repository 프로젝트 ( 필자의 코드상으로 DbContext 가 있는 프로젝트) 로 변경하고 다시 마이그레이션을 시도하였다.
Install-Package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore
Add-Migration 스키마이름명
Update-Database
참고 : https://www.youtube.com/watch?v=N9X0aWcs78M
참고 : https://learn.microsoft.com/ko-kr/aspnet/core/security/authentication/scaffold-identity?view=aspnetcore-6.0&tabs=visual-studio