https://github.com/binrohan/game-lib_base-project
https://github.com/binrohan/game-lib_base-project
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/binrohan/game-lib_base-project
- Owner: binrohan
- Created: 2024-01-09T09:49:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-07T08:25:11.000Z (over 2 years ago)
- Last Synced: 2025-01-14T02:11:46.636Z (over 1 year 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
}
]
}
```