주 메뉴 열기

wwiki β

Asp.net core mvc

목차

MySQL편집

마이그레이션 히스토리 테이블 생성편집

다음 에러메시지가 출력되는 경우에

EFMigrationsHistory' doesn't exist

다음 쿼리문을 사용하여 테이블을 생성한다.

CREATE TABLE IF NOT EXISTS __EFMigrationsHistory (
  MigrationId varchar(150) NOT NULL,
  ProductVersion varchar(32) NOT NULL,
  CONSTRAINT PK___EFMigrationsHistory PRIMARY KEY (MigrationId)
);

Identity 적용편집

에러메시지편집

InvalidOperationException: No coercion operator is defined between types 'System.Int16' and 'System.Boolean'.

모델편집

컨트롤러편집

Lazor편집

dotnet명령어편집

실행편집

$ /usr/bin/dotnet run

서비스 등록 (for linux)편집

참고 사이트: https://docs.microsoft.com/ko-kr/aspnet/core/host-and-deploy/linux-nginx?view=aspnetcore-2.2

서비스 정의 파일 생성편집

$ sudo nano /etc/systemd/system/kestrel-helloapp.service

서비스 파일 정의편집

[Unit]
Description=Example .NET Web API App running on Ubuntu

[Service]
WorkingDirectory=/var/www/helloapp
ExecStart=/usr/bin/dotnet /var/www/helloapp/helloapp.dll
Restart=always
# Restart service after 10 seconds if the dotnet service crashes:
RestartSec=10
KillSignal=SIGINT
SyslogIdentifier=dotnet-example
User=www-data
Environment=ASPNETCORE_ENVIRONMENT=Production
Environment=DOTNET_PRINT_TELEMETRY_MESSAGE=false

[Install]
WantedBy=multi-user.target