Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/binrohan/game-lib_base-project
https://github.com/binrohan/game-lib_base-project
Last synced: 10 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/binrohan/game-lib_base-project
- Owner: binrohan
- Created: 2024-01-09T09:49:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-07T08:25:11.000Z (12 months ago)
- Last Synced: 2024-11-14T09:37:25.796Z (2 months ago)
- Language: C#
- Size: 110 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# game-lib_base-project
## EF Commands:
### Migration: dotnet ef migrations add Initial -p GameLib.Infrastructure\GameLib.Infrastructure.csproj -s GameLib.API\GameLib.API.csproj -o Data/Migrations
### Update Database: dotnet ef database update -p GameLib.Infrastructure\GameLib.Infrastructure.csproj -s GameLib.API\GameLib.API.csproj## Create Publisher Dto example:
```
{
"name": "EA",
"established": "2024-01-21",
"phoneNumbers": [
{
"countryCode": "88",
"number": "55555",
"extension": "++"
},
{
"countryCode": null,
"number": "77777",
"extension": null
}
]
}
```