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

ASP.NET Core Web API Identity JWT 2024 - 21. Install Identity

Поделиться
HTML-код
  • Опубликовано: 14 авг 2024
  • ASP.NET Core Web API JWT 2024 - 1. Install Identity
    Github repo: github.com/ted...
    Twitter: / teddysmithdev
    Github: github.com/ted...
    Linkedin: / teddy-smith-015ba61a3

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

  • @rodrigo-5967
    @rodrigo-5967 6 месяцев назад +5

    I always fear those migrations. I didn't had any problems now tho so thanks a lot! Incredible playlist up until now. Took a week to find someone that gives some suggestions as to how organize the code in .NET and not just how to do X and Y which is helping me tons getting started with .NET.

  • @simplemath_01
    @simplemath_01 6 месяцев назад +2

    This really is challenging, but we've learnt to do the hard things. Thank you Boss

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

    Amazing! Confused the hell out of me, but.... amazing! haha

  • @MohammadMahdiNiknam
    @MohammadMahdiNiknam 6 месяцев назад +1

    Man this was eye opening👌👌👌

  • @seifmostafa58
    @seifmostafa58 4 месяца назад +2

    Hey , could you make a video about deployment , what would change in the original configuration ,what are the best practices , so on?

    • @TeddySmithDev
      @TeddySmithDev  4 месяца назад +3

      Maybe later on down the road. Finshark took way too long to finish and I’m way behind on courses.

    • @seifmostafa58
      @seifmostafa58 4 месяца назад

      @@TeddySmithDev sure thing :) . good luck in the rest of the courses, this one turned out to be a gem 👏🏻👏🏻👏🏻

  • @Khal_Rheg0
    @Khal_Rheg0 3 месяца назад

    Thank you! Great Stuff!

  • @tarekabiramia913
    @tarekabiramia913 6 месяцев назад

    Acing it as usual, keep it up

  • @AndrewEklund-yx9gu
    @AndrewEklund-yx9gu 4 месяца назад

    Great video very helpful. I have been putting off adding the Identity portion of my project until now. I did run into an issue with the migration. i got an error: failed to load the configuration from file. Any thoughts?

  • @renatyrn
    @renatyrn 6 месяцев назад

    Is it common practice to tie user model with other models? e.g. in job portal service user can have summary and seems like summary model has to be linked with user I mean user could have many summaries and it's one-to-may relations

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад

      Yeah very common. Potentially endless combinations with each db relation type.

  • @brokenmyth7035
    @brokenmyth7035 6 месяцев назад

    Hi Teddy, Thank you for your videos. I want to ask that don't you use a depreciated package which is identity? It gives warning in my IDE.

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад +1

      Thanks for comment! Which package and IDE? I checked VS 2022 and no deprecation errors.

    • @brokenmyth7035
      @brokenmyth7035 6 месяцев назад

      @@TeddySmithDev sorry it was about me. Thank you for your reply. Keep up your videos. They are so useful.

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад +1

      Omg u scared me lmao. Thanks for watching!

  • @MindBodyMeditate
    @MindBodyMeditate 7 месяцев назад +1

    Brother, please tell me you got a paid course/patreon somewhere. This content is too legit to watch for free (I'm not complaining, but I'd like to support)

    • @TeddySmithDev
      @TeddySmithDev  7 месяцев назад +1

      lol, yeah i have a patreon www.patreon.com/teddysmithdev

  • @jportugal100
    @jportugal100 5 месяцев назад

    So if I wanted to put the identity information in a new sql database instead of the same one as the data how would you do that instead?

    • @TeddySmithDev
      @TeddySmithDev  5 месяцев назад

      I think there’s way to add them separately in the program.cs. I’ve never done it tho.

    • @jportugal100
      @jportugal100 5 месяцев назад

      @@TeddySmithDev Thanks for the reply. I think I found a way by adding a new dbcontext and doing it that way. Love the videos btw.

  • @UniqueGameDev
    @UniqueGameDev 6 месяцев назад +1

    What just happened 😭 im so lost at program.cs part 😭😭

    • @salar1997
      @salar1997 5 месяцев назад

      what went wrong?

  • @DandarandanEC
    @DandarandanEC 5 месяцев назад

    Hi Teddy, I have a problem. Whenever I add migrations, I only see the Stocks and Comments tables. Anyone else get this error?

    • @TeddySmithDev
      @TeddySmithDev  5 месяцев назад +1

      You may not have hooked up identity in Program.CS

    • @skatevolcom433
      @skatevolcom433 5 месяцев назад

      I had this issue too. To fix it I had to delete the migrations folder and database. Then create a new migration and update.

    • @MrTadsuki
      @MrTadsuki 4 месяца назад

      @@skatevolcom433 what do you mean delete the database? Like deleting it from Azure Data Studios (or SSMS)?

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

      @@MrTadsuki I deleted the database in SSMS and it worked!

  • @beingsebi
    @beingsebi 7 месяцев назад

    pls tell me there are going to be more videos very soon

  • @jayakumar2927
    @jayakumar2927 6 месяцев назад

    Microsoft.Data.SqlClient.SqlException (0x80131904): Invalid column name 'AppUserId'. 3:31 / 15:37

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад

      Easy way to fix is delete migrations folder and database. Create new migrations and update. You could try to delete the column but entire redo is easier and better.

    • @ebenvosloo3713
      @ebenvosloo3713 6 месяцев назад

      ​ Thank you​ @@TeddySmithDev , fixed my problem straightaway, just weird why there was an error in the first place. How do you really fix an issue like this when you are in production? (My issue was @SQL_EXP was undefined).

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад

      Difficult to say but you would just go in and delete the column and re add it to