Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bbonkr/simple-account-book


https://github.com/bbonkr/simple-account-book

Last synced: 25 days ago
JSON representation

Awesome Lists containing this project

README

        

# Simple Account Book

## 🌈 Overview

5μ›” μ†Œλ“μ‹ κ³ λ₯Ό μœ„ν•΄ κ°„νŽΈμž₯λΆ€λ₯Ό μž‘μ„±ν•©λ‹ˆλ‹€.

## πŸ”¨ EF migration

```powershell
$ cd src/SimpleAccountBook.Data
$ dotnet ef migrations add "" --context ApplicationDbContext --startup-project ../SimpleAccountBook.App --project ../SimpleAccountBook.Data.SqlServer --output-dir Migrations
```

μ•„λž˜μ™€ 같은 λ©”μ‹œμ§€κ°€ 좜λ ₯되면 `dotnet-ef` 도ꡬλ₯Ό μ—…λ°μ΄νŠΈν•΄μ•Ό ν•©λ‹ˆλ‹€.

```
The Entity Framework tools version '5.0.3' is older than that of the runtime '5.0.4'. Update the tools for the latest features and bug fixes.
```

μ•„λž˜ λͺ…λ ΉμœΌλ‘œ `dotnet-ef` 도ꡬλ₯Ό μ—…λ°μ΄νŠΈν•  수 μžˆμŠ΅λ‹ˆλ‹€.

```powershell
$ dotnet tool update --global dotnet-ef
```