Это видео недоступно.
Сожалеем об этом.

Entity Framework Core Migrations | Create Tables with EF Core Code-First | Part 07

Поделиться
HTML-код
  • Опубликовано: 7 июн 2024
  • 👋 Hello, developers! 👋
    Welcome to the seventh part of our series. In this video, we'll guide you through the process of using Entity Framework Core migrations to create tables in your .NET project using the Code-First approach. This tutorial will help you understand how to manage and update your database schema efficiently.
    🔹 What You'll Learn:
    🔍 Introduction to Entity Framework Core migrations
    🏗️ Setting up EF Core migrations in a .NET project
    📂 Creating and updating tables using the Code-First approach
    🛠️ Best practices for managing database schemas with migrations
    🔹 Why Use EF Core Migrations?
    EF Core migrations simplify the process of evolving your database schema over time. They allow you to define and apply changes to your database in a controlled and efficient manner.
    🔹 Who Is This Video For?
    Developers new to EF Core migrations
    Those looking to implement the Code-First approach in their projects
    Anyone interested in efficient database schema management
    🔹 Stay Tuned:
    Don't forget to like, subscribe, and hit the notification bell 🔔 to stay updated with our latest videos. We have a lot of exciting content planned for you!
    Source Code (Patreon):
    www.patreon.co...
    Source Code (Buymecoffee): buymeacoffee.c...
    👉 Connect with Us:
    RUclips: / @letsprogram30
    Instagram: / lets.program
    LinkedIn: / sashikumar-yadav
    Telegram: t.me/letsprogr...
    Twitter: / yshashi30
    Let's Program Blog: letsprogram.in/
    Github: github.com/ysh...
    Support this channel by becoming a member:
    Buymecoffee: buymeacoffee.c...
    Patreon: / letsprogram
    🎥 Watch Next:
    NGRX basic example
    • Angular state manageme...
    Google Authentication
    • Google authentication ...
    Netflix clone using angular
    • Netflix Clone using An...
    Angular Chat App
    • Create Chat Applicatio...
    MEAN stack AUTH Series
    • MEAN stack project set...
    Angular Signals
    • Signals in Angular | H...
    Angular 14 Login and Signup Page | Part 1
    • Angular 14 Login and S...
    Angular 14 Form Validation| Part 2
    • Angular 14 Reactive Fo...
    Login & Signup API creation & integration with Angular | Part 3
    • Login and Signup using...
    Encrypt Password in .NET 6 | Password strength checker in Angular
    • Encrypt Password in .N...
    Angular Authentication with Hashed Password | Part 5
    • Angular Authentication...
    Create JWT token in .NET 6 | Angular + .NET authentication | Part 6
    • Create JWT token in .N...
    Implement JWT token in Angular 14| Interceptors in Angular | Part 7
    • Implement JWT token in...
    Angular News Application
    • Angular 14 News Applic...
    Crypto Currency Application
    • Angular Project - Cryp...
    Angular TODO Application
    • TODO Application in An...
    Angular 13 CRUD using Material UI
    • Angular 13 CRUD with A...
    Angular QUIZ Application
    • Angular 12 Quiz Applic...
    Angular Add-to-cart app
    • Add to Cart in Angular...
    Join this channel to get access to the perks:
    / @letsprogram30
    Thank you for watching! Stay tuned for more Full-stack tips and tutorials. 🌟
    #ORM, #EntityFramework, #EFCore, #CodeFirstApproach, #NETDevelopment, #DatabaseManagement, #CodingTutorial, #LearnToCode, #SoftwareDevelopment, #ProgrammingBasics, #TechTutorials, #DeveloperLife, #CodeWithMe, #EntityFrameworkCore, #DotNet, #CodingJourney, #TechEducation, #WebDevSeries, #HandsOnCoding, #devcommunity
    Join this channel to get access to the perks:
    / @letsprogram30

Комментарии • 8

  • @informer9261
    @informer9261 2 месяца назад

    hi sir iam facing some error i have texted in insta
    Could not load assembly 'Infrastructure'. Ensure it is referenced by the startup project 'Api'.

  • @informer9261
    @informer9261 2 месяца назад

    sir how to delete and update migration

  • @OsamaHasan-xk8ty
    @OsamaHasan-xk8ty Месяц назад

    Bro how can i use azure data as you can u explain for me please 🙏

  • @daniel49245
    @daniel49245 2 месяца назад

    Isn't it easier just to update the code the migration creates and just skip the entity configuration part?

    • @letsprogram30
      @letsprogram30  2 месяца назад

      I’m sorry I didn’t got your question! Can you elaborate more

    • @daniel49245
      @daniel49245 2 месяца назад

      @@letsprogram30 the add-migration command generates a entity configuration. Isn't it easier just to modify the generated code?

    • @letsprogram30
      @letsprogram30  2 месяца назад

      @@daniel49245 making changes in those files are not as easy as writing the configuration! I don’t think so anyone have ever tried to create those tables directly from them! Yes doing some small updates should be fine!
      To be honest it doesn’t make sense. Coz anyway you have to write all of those then why not use the Efcore fluent api to get the job done 👍