Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bbonkr/simple-account-book
https://github.com/bbonkr/simple-account-book
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/bbonkr/simple-account-book
- Owner: bbonkr
- Created: 2021-04-04T06:59:37.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-19T07:26:21.000Z (about 3 years ago)
- Last Synced: 2024-04-09T21:56:09.529Z (7 months ago)
- Language: C#
- Size: 87.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```