Stock Market / Social Media Platform .NET Core Web API
- .NET SDK version 8.0 or later
-
Clone the repository:
git clone https://github.com/Faizanshaikh12/FinSharkWebAPI.git cd FinSharkWebAPI
-
Restore the dependencies:
dotnet restore
-
Build the project:
dotnet build
-
Run the project:
dotnet run dotnet watch run
dotnet ef migrations add <MigrationName>
dotnet ef migrations add InitialCreate
dotnet ef database update
dotnet ef database update <PreviousMigration>
dotnet ef migrations remove
dotnet ef migrations list
dotnet ef migrations script
dotnet ef migrations script <FromMigration> <ToMigration>
dotnet ef migrations script InitialCreate AddNewTable