"Asp.net core mvc"의 두 판 사이의 차이

wwiki
이동: 둘러보기, 검색
(PostgreSQL)
25번째 줄: 25번째 줄:
 
====connection string====
 
====connection string====
 
"User ID=damienbod;Password=1234;Host=localhost;Port=5432;Database=damienbod;Pooling=true;"
 
"User ID=damienbod;Password=1234;Host=localhost;Port=5432;Database=damienbod;Pooling=true;"
 
===마이그레이션 명령===
 
====추가====
 
<syntaxhighlight lang="powershell">
 
PM> Add-Migration InitialCreate
 
</syntaxhighlight>
 
 
==== 삭제 ====
 
마이그레이션을 추가하고 update-database로 적용하기 전에 마이그레이션을 삭제한다.<syntaxhighlight lang="powershell">
 
Remove-Migration
 
</syntaxhighlight>
 
 
====복원====
 
PM> Update-Database 20161012160749_AddedOrderToCourse
 
 
====업데이트====
 
<syntaxhighlight lang="powershell">
 
Update-Database
 
</syntaxhighlight>
 
 
==== 마이그레이션 테이블 생성 ====
 
mysql의 경우에 필요한 경우가 있다.<syntaxhighlight lang="mysql">
 
CREATE TABLE `__EFMigrationsHistory` ( `MigrationId` nvarchar(150) NOT NULL, `ProductVersion` nvarchar(32) NOT NULL, PRIMARY KEY (`MigrationId`) );
 
</syntaxhighlight>
 
  
 
===모델===
 
===모델===

2022년 11월 14일 (월) 02:17 판

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)
);

MySQL Identity 적용

에러메시지

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

PostgreSQL

nuget package

Install-Package Npgsql.EntityFrameworkCore.PostgreSQL

connection string

"User ID=damienbod;Password=1234;Host=localhost;Port=5432;Database=damienbod;Pooling=true;"

모델

컨트롤러

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