ASP.NET Core Web API .NET 6 2022 - 3. Many-To-Many Relationships

Поділитися
Вставка
  • Опубліковано 5 вер 2024
  • ASP.NET Core Web API .NET 6 2022 - 3. Many-To-Many Relationships
    Github Repo For This Project: github.com/ted...
    UML Diagram: drive.google.c...
    Twitter: / teddysmithdev
    Github: github.com/ted...
    Linkedin: / teddy-smith-015ba61a3

КОМЕНТАРІ • 60

  • @segunbabalola7430
    @segunbabalola7430 3 місяці тому +3

    You don't know how much what you said from 8:26 to 9:20 mean to a lot of people. The encouragement is great

  • @chadgregory9037
    @chadgregory9037 2 роки тому +8

    I like to think about these tables and relationships in terms of an object being created.
    So for example... a many to many relationship.... we HAVE to have that join table because that is literally everything and that's where the "magic" happens.... so for example, when a trainer catches a pokemon, the pokemon entity already existed, it already had its own unique ID... the trainer/owner entity already existed and it had its own unique ID... so when the trainer catches a new pokemon (creation of a new object) the entry is occurring on the join table..... and then say a view model would have a trainer entity having an Icollection and an sql JOIN would be done in order to pull the necessary data in to make it available to the application

    • @TeddySmithDev
      @TeddySmithDev  2 роки тому

      This is really cool

    • @chadgregory9037
      @chadgregory9037 2 роки тому

      @@TeddySmithDev I hope it's right lol
      I let my brain get a little pretzel f-kd with the different kinds of models and use cases lol

  • @raggardy
    @raggardy 2 роки тому +5

    Teddy, thanks so much for this series! Really simple explainations of 1-2-1 and many to many.Glad I stumbled across your channel and keep up the great work

  • @spencersedano
    @spencersedano 7 місяців тому

    This is the first time that I understand why write or anything, I had no idea when I first saw it. Thanks a lot!

    • @TeddySmithDev
      @TeddySmithDev  7 місяців тому

      Cool name lol. Thanks for commenting!!!

  • @petrvodicka6053
    @petrvodicka6053 Рік тому +8

    Teddy good work! One possible procedure how to create more complex data structures is to create it on MS SQL server (with SQL Server management studio - SSMS) and create Database diagram, where you can see visually how the tables are joined. If you are satisfied, you can use Scaffold-DbContext command to generate model. You can make changes in the model and then migrate changes to the same (other) database through Add-Migration and Update-Database. Your changes can be seen in database diagram in SSMS. It is good to see what exactly is in database visually, I think.

  • @Tanaka-Buchou
    @Tanaka-Buchou 2 роки тому +3

    Thank you, Teddy. Your explanations are precise.

  • @trashbin2166
    @trashbin2166 Рік тому +2

    Dude you're sooo good at explaining stuff (loved that pokemon analogy)! Keep it up!

  • @itsrino9851
    @itsrino9851 9 місяців тому

    I love how you added some side productivity shortcuts, like the get definition !! Its little things like this that make a big difference in workflow! thanks for that!

  • @kvelez
    @kvelez 4 місяці тому

    Great, I learned a lot about relationships and keys.

  • @user-wf8sx3bo8m
    @user-wf8sx3bo8m Рік тому +1

    Great Pokemon explanation of many to many

  • @koenmjaar
    @koenmjaar 5 місяців тому

    You might want to inform the people watching that adding the collections is not a must. For me it came over as this is a MUST thing to do, while it's not (correct me if I'm wrong lol).
    F.e. If I have a table Occupation linked to the table User, I don't want to fetch every User linked to one occupation at all times, that's why we would write a specific query with the ORM to add the collection of users linked to the occupation id

  • @dq9342
    @dq9342 Рік тому +1

    Thanks again, Teddy! Keep up the good teaching!

  • @vicman3122
    @vicman3122 Рік тому +1

    Dude you are great, Thanks I'm going to recomend your videos to my friends

  • @trungnguyencong3216
    @trungnguyencong3216 2 роки тому +1

    thank you so much your repo is a life saver I have hard time understand relationship many to many

  • @NamNguyen-oz8uj
    @NamNguyen-oz8uj 2 роки тому +1

    Thank you for your great videos, Teddy 🎉🎉🎉🎉🎉🎉

  • @hoangphuc1072
    @hoangphuc1072 2 роки тому +1

    Thank you for your great videos, Teddy

  • @reginaabdu931
    @reginaabdu931 8 місяців тому

    Thanks, Teddy! From your subscriber from Uzbekistan!

  • @onurakmese2129
    @onurakmese2129 Рік тому +1

    Thank you bro, you're my hero

  • @diegosabaris4282
    @diegosabaris4282 4 місяці тому

    very useful video, thank you very much! one question, if a pokemon can have one owner at a time, doesn't it make it a one to many relationship, rather than a many to many?

  • @antoinedtube
    @antoinedtube 4 місяці тому

    Hi Teddy, when we separate the models into their own DLL (with other linked classes and other stuffs), we can't reference those dll between them to avoid circular dependencies. Then how to make those many-to-many relationships because the reference would be on only one side?

  • @weston4412
    @weston4412 2 роки тому +1

    So all the join classes aren't necessary if we know how to join data from different tables in SQL?

  • @caglarcansarikaya1550
    @caglarcansarikaya1550 2 роки тому +1

    Thanks taddy I got this :) I have one another interesting question how should you implement a baby sitter in this. Baby sitter and pokemonowner are users, this is their role. Each owner has pokemon btw 0 to n, and also each baby sitter has a pokemon btw 0 to n. How should you create ?

  • @JonopolyHD
    @JonopolyHD Рік тому +1

    Is there much difference between a Join Table and a View?

  • @busraucar2225
    @busraucar2225 Рік тому +1

    Hello Teddy. I have a question. Thanks to EF, isn't it also done without creating any binding classes in many to many relationships? I mean, in Poker class: ICollection Categories is written, in Category class ICollectionPokers is written, won't a cross table be created automatically? Do we need to create binding class?

    • @TeddySmithDev
      @TeddySmithDev  Рік тому

      The new EF does everything for you now. When I created this video that feature did now exist.

    • @busraucar2225
      @busraucar2225 Рік тому

      @@TeddySmithDev Thanks for your response😊

  • @enricoroselino7557
    @enricoroselino7557 8 місяців тому

    so why do we use ICollection here not List ? funny thing is the same question when i started watch MAUI lesson with ObservableCollection instead of list

  • @chadgregory9037
    @chadgregory9037 2 роки тому +1

    Would this be done entirely differently if we were using view models instead?

  • @user-kg2so1ol1v
    @user-kg2so1ol1v 9 місяців тому

    лучший учитель!

  • @Molecular_Machine
    @Molecular_Machine Місяць тому

    Is there a love button. Mate, the like button is not enough to appreciate your great demonatration!

  • @witChaos
    @witChaos Рік тому +1

    Hello Teddy. I've a question. If somoene has two countries, for example he is half Spanish half Greek, is considered as a many to many relationship?

    • @TeddySmithDev
      @TeddySmithDev  Рік тому

      Interesting question. Yes that would be one to many. You could even have separate table for country based data if you want.

    • @witChaos
      @witChaos Рік тому

      @@TeddySmithDev one to many or many to many I'm confused 😅

    • @Saibandija
      @Saibandija Рік тому

      @@witChaos This is my guess, but he probably meant many to many. A country can hold **one or many** persons, and a person can belong to **one or many** countries, therefore many to many.
      Though I think what you are actually referring to is a person's ethnicity rather than a country, in that case country (where you currently live) would have a one-to-many relationship with person and you could have another property for ethnicity (many to many).

  • @learnffs-pl9ie
    @learnffs-pl9ie 10 місяців тому

    Good thing you used squirtle as example. Vaporeon would be weird.

    • @TeddySmithDev
      @TeddySmithDev  10 місяців тому

      Squirtle is the best. Vaporeon sounds like a vape store.

    • @learnffs-pl9ie
      @learnffs-pl9ie 10 місяців тому

      @@TeddySmithDev oh you dont know vaporeon copypasta ?

    • @TeddySmithDev
      @TeddySmithDev  10 місяців тому

      Omg just googled lmao. U crazy 🤣🤣🤣

  • @doointhedoo
    @doointhedoo 11 місяців тому

    Teddy, I need to join two tables that are represented by two data model files in a Web API. how is this represented in the controller, the interface, and the repository?

  • @HiroShinji22
    @HiroShinji22 4 місяці тому

    I admit I don't get the many-to-many relationship owners with pokemons. Here, a pokemon have a name and a birth date, like "Pikachu". It's more like an unique person. And Pikachu belongs to Sacha only. Pikachu can't belong to Pierre or I don't know. It will always be "owners" who can have multiple "pokemons".

  • @ishanillangakoon178
    @ishanillangakoon178 10 місяців тому

    Hi I would like to know how to identify one-to-one, one-to-many and many-to-many relationships using UML diagram ?

    • @TeddySmithDev
      @TeddySmithDev  10 місяців тому +1

      Look for fork and where lines connect. If there are forks on both side = many to many. If only one fork, one to many

    • @ishanillangakoon178
      @ishanillangakoon178 7 місяців тому

      @@TeddySmithDev Thank You So much ! 👍

  • @chadgregory9037
    @chadgregory9037 2 роки тому +1

    My shits unable to determine the relationship between entities on my many to many

  • @chadgregory9037
    @chadgregory9037 2 роки тому +1

    1:20 team rocket says bull fucking shit!!

  • @nuc1earant
    @nuc1earant 9 місяців тому +1

    WARNING! BEFORE WATCHING THIS COURSE U NEED TO WATCH ALL SEASONS AND EPISODES OF POKEMON

    • @TeddySmithDev
      @TeddySmithDev  9 місяців тому

      🧢

    • @nuc1earant
      @nuc1earant 9 місяців тому

      @@TeddySmithDev aint no cap guys im fr. If u wanna understand go become a pokemon guru

  • @mlbb_bros4659
    @mlbb_bros4659 6 місяців тому +1

    ur cutie-pie

  • @awaisnazir5983
    @awaisnazir5983 10 місяців тому

    brother doing well, but let me give you an suggestion, try to make video short one, students dont have much time to watch lengthy videos, talk less and work more 🙂

  • @justaDN96
    @justaDN96 Рік тому

    need discord inv pls

  • @randyrivera2660
    @randyrivera2660 8 місяців тому

    Thank you so much for this man 🫶