Dotnet api linux: Difference between revisions
Jump to navigation
Jump to search
Created page with "= Set up with VS Code = == Create Project == To create a webapi using .net core 3.1 simply type <syntaxhighlight lang="bash"> dotnet new webapi </syntaxhighlight> == Restore N..." |
|||
Line 6: | Line 6: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Restore Nuget Packages == | == Restore Nuget Packages == | ||
<syntaxhighlight lang="bash"> | |||
dotnet add package Microsoft.EntityFrameworkCore | |||
</syntaxhighlight> |
Revision as of 03:21, 28 July 2020
Set up with VS Code
Create Project
To create a webapi using .net core 3.1 simply type
dotnet new webapi
Restore Nuget Packages
dotnet add package Microsoft.EntityFrameworkCore