Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/binrohan/game-lib_base-project


https://github.com/binrohan/game-lib_base-project

Last synced: 10 days ago
JSON representation

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
}
]
}
```