One Way to Join Related Tables with LINQ and Entity Framework Core

Поділитися
Вставка
  • Опубліковано 24 чер 2021
  • If you liked the content, please consider checking out my Patreon! - / membership Hey everyone, today we are going to take a look at one way to join tables and their data with Entity Framework using LINQ. Thanks for watching!
    The Standing Desk I Use - amzn.to/3ivth5G
    My Favorite Python Book - amzn.to/3IWJ7zX
    Check out my Website for more Content - codingunderpressure.com/
  • Наука та технологія

КОМЕНТАРІ • 7

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

    Good tutorial, helped a lot, thanks!

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

    can you put link of last video here

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

    where is your previous video that you recommend us watching at the beginning of the video?

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

    Hi, how can I add this result to a List ?

    • @teykk4
      @teykk4 2 роки тому +2

      ToList()

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

    thanks

  • @pablo-vk8yt
    @pablo-vk8yt 6 місяців тому +1

    thats not the official way to join tables. The official way would be like this:
    var TestObject = from cols in db.Colors
    join c in db.Cars on cols.id equals c.colorId
    select new
    {
    model = c.model ... etc.
    }