While I was watching this almost 30 minutes of videos, several times I stopped to click "like" but unfortunately youtube only allows you to like once. Thank you from Brazil!
This must be the most useful channel I've found so far on the entire UA-cam. Practical examples of real world apps, I love you man, this is not just a good job, but an AWESOME job!
Julian! We need more content... you just uploaded a view videos and you already have over 800 subs :D You can do it... just keep the grind up and you will grow ^^
I'm using .NET 8 and doing the initial Update-Database only creates the EF_Migrations table to create the other Identity tables I had to run the Add-Migration followed by the Update-Database. Also I was having certificate issues and had to add TrustServerCertificate=True; to the connection string to work on my local DB server
Can you please make a video on how to customize the identity for example I a stake holder called customer and I would like to customize Identity for that user to insert a profile image
Hi - Can you tell me if you have a video on setting up the email client for the Identity email. I can't seem to find any mention other than they did away with the simple smpt from old versions. Thanks
Hi there, unfortunately I haven't got any video yet focusing on that. Would a more up to date tutorial solve your problem? I know Jason Watmore has a blog post on smtp with MailKit in .NET 6. Hope this helps!
@@CodeWithJulian - Thanks for your help. I will check out Jason's post. I like the pace and style of your videos, the videos and audios are crisp, clear and your narration is easy to hear and understand. All the best, Ken
Hi there, unfortunately Blazor Server does not work offline when deployed, only Blazor Web Assembly. And even then, the whenever a database is involved, you'll need an internet connection. In this case, we're using Blazor Server, this means the entire C# logic from our Blazor components is processed on the server. To allow this to happen we'll need an internet connection when our app is deployed.
Hey, i don't have register and login buttons and also don't have LogOut.cs :( DId everything step by step like You Did, have u goth any solution for this?
That's work wonderful BUT after the "HELLO WORLD" becomes the real work, i create perfectly the identity but y make a "Scaffold-DbContext" of my database and of course this create my tables and the identity tables, all with the prefix ASP, but when i try to run the website prompt a error because the table IdentityUserLogin have two Keys... can you helpme please ?
Hm interesting, I haven't had that error. Best thing I could suggest is clone the repo and compare the files with yours as that project is fully working. Hope this helps!
Hey i'm building a prototype of a social media and i used the scaffold item to add a Login and registration model, but i cant add First name and Surname to the registration model, cause i don't know what should i write in Registration, can you help me ?
@@CodeWithJulian If following from scratch like the tutorial, you are right. But as @Janusz mentioned, need to add migration first, if following your tutorial to add to an existing project.
While I was watching this almost 30 minutes of videos, several times I stopped to click "like" but unfortunately youtube only allows you to like once. Thank you from Brazil!
That is very kind of you! I'm glad you enjoyed the video.
This must be the most useful channel I've found so far on the entire UA-cam.
Practical examples of real world apps, I love you man, this is not just a good job, but an AWESOME job!
Thanks so much for your kind words, Eduard! I'm really pleased the tutorials have been helpful to you!
This is really amazing, JWT has been like a myth to me but you have unlocked it in a simple and comprehensive understanding, thanks.
This was a fantastic tutorial! Easy to follow, well developed, and relevant. Keep up the awesome work!
Thanks a lot for your feedback! Glad you enjoyed it!
Julian. These are some quality tutorials. Thank you for providing them.
What a high quality video. Thanks!
Thanks! Glad you enjoyed it!
Really easy to understand and useful content. Thank you a lot!👍
Thanks for comment, glad you've found it useful!
I have to agree with the sentiment of others - quality tutorials, Julian - thank-you.
Thanks for the kind words! Happy they've been helpful!
This is very helpful content. Keep up the great work!
Great content..thank you for the lucid overview..hope that your channel flourishes.
You are amazing!🍻
You too, for going through this tutorial!
Thanks for sharing, is there a way to do this without Entity framework? Using dapper instead
Julian! We need more content... you just uploaded a view videos and you already have over 800 subs :D You can do it... just keep the grind up and you will grow ^^
I'm using .NET 8 and doing the initial Update-Database only creates the EF_Migrations table to create the other Identity tables I had to run the Add-Migration followed by the Update-Database. Also I was having certificate issues and had to add TrustServerCertificate=True; to the connection string to work on my local DB server
Good Job. I was just wondering what was happening behind the scenes. I don't like wondering how things work :)
Thanks! Glad I was able to shed some light over this subject!
Hi, Do you have a video to authenticate Blazor Server App using MS(Work & school) Account?
Can you please make a video on how to customize the identity for example I a stake holder called customer and I would like to customize Identity for that user to insert a profile image
Hi, please make a full video on Asp. Net core API
great tutorial
Glad it's been helpful!
Thank you.
Great video. However, i'd appreciate if you follow best practices in your videos
Hi - Can you tell me if you have a video on setting up the email client for the Identity email. I can't seem to find any mention other than they did away with the simple smpt from old versions.
Thanks
Hi there, unfortunately I haven't got any video yet focusing on that. Would a more up to date tutorial solve your problem? I know Jason Watmore has a blog post on smtp with MailKit in .NET 6. Hope this helps!
@@CodeWithJulian - Thanks for your help. I will check out Jason's post. I like the pace and style of your videos, the videos and audios are crisp, clear and your narration is easy to hear and understand. All the best, Ken
hi Julian how can i do offline mode for blazor and identity server. hope can hear you soon Thank
Hi there, unfortunately Blazor Server does not work offline when deployed, only Blazor Web Assembly. And even then, the whenever a database is involved, you'll need an internet connection. In this case, we're using Blazor Server, this means the entire C# logic from our Blazor components is processed on the server. To allow this to happen we'll need an internet connection when our app is deployed.
I just get framework 3.1, if i make a net core project that is not razor server i can use net core 8
Hey, i don't have register and login buttons and also don't have LogOut.cs :( DId everything step by step like You Did, have u goth any solution for this?
Nvm, i created app without authorization.
Hey did you try downloading the sourcecode? It is identical with what's being created in the tutorial.
How do you add a profile image?
That's work wonderful BUT after the "HELLO WORLD" becomes the real work, i create perfectly the identity but y make a "Scaffold-DbContext" of my database and of course this create my tables and the identity tables, all with the prefix ASP, but when i try to run the website prompt a error because the table IdentityUserLogin have two Keys... can you helpme please ?
Hm interesting, I haven't had that error. Best thing I could suggest is clone the repo and compare the files with yours as that project is fully working. Hope this helps!
@@CodeWithJulian thanks for your faster response
Hey i'm building a prototype of a social media and i used the scaffold item to add a Login and registration model, but i cant add First name and Surname to the registration model, cause i don't know what should i write in Registration, can you help me ?
you want to add first name or last name in registration ? Am I right
@@ehtishamakram4437 yes
Idk why, but before migration had to use Add-Migration "Initial-Create" and then Update-Database, without 1st command migration didn't work :/
Hm, creating the project from a template as in the tutorial is guaranteed to add those migrations in for you. But it's good you found a solution.
@@CodeWithJulian If following from scratch like the tutorial, you are right. But as @Janusz mentioned, need to add migration first, if following your tutorial to add to an existing project.
How can we integrate with generic oauth provider like pingfederate there is no package available
I am not familiar with that provider and so unfortunately, I won't be able to advise.
How use identity in Core MVC?
How come you had logged out and not login?
Come back with project in. .Net core please
You say its a net core tutorial but you use net 6.0, not net core