Create ASP.NET Web Application with Entity Framework and SQL Server using Visual Studio Code 2024

Sdílet
Vložit
  • čas přidán 19. 07. 2024
  • How to create an ASP.NET Web Application using Visual Studio Code and .NET 8. How to use the dotnet command with vscode. Install the C# extensions + Nuget Package Manager + Sql Server extension for vscode. Install dotnet-ef tool. Add Entity Framework packages to vs code.
    ***********************************
    🔥 Complete Udemy Courses :
    Build E-commerce Web Application using ASP.NET Core : www.udemy.com/course/aspnet-c...
    Build E-commerce Web API using ASP.NET Core : www.udemy.com/course/build-as...
    Build E-commerce Web Application using React JS : www.udemy.com/course/build-co...
    ************************
    dotnet tool install --global dotnet-ef
    dotnet tool install --global dotnet-ef --version 8.0.0
    dotnet ef migrations add FirstMigration
    dotnet ef database update
    ************************
    Video Content
    (00:00) Install .NET 8 and Sql Server
    (01:38) Install VSCode Extensions
    (02:36) Create new project
    (04:23) Add EF packages and Create DbContext
    (09:38) Add Migration and Create the Database
    (13:19) Create Razor Page and Display Data

Komentáře • 2

  • @alii2284
    @alii2284 Před 4 měsíci +1

    Thankyou. I thought I can only work on visual studio 2022

  • @kaelthunderhoof5619
    @kaelthunderhoof5619 Před 4 měsíci

    Can I ask, I'm making a web-based salon booking system. Do I only use an index.php or index.html for the website?