goo.gl/bPcyXW : Buy me a Coffee bit.ly/4cfxLpk : Prev. Video (Organize Program.cs File) bit.ly/4f0tOY5 : Part 1 (User Registration) bit.ly/403lUVC : AspNet MVC with Identity Core bit.ly/47yygKq : (Angular & .Net Core API) Tutorials bit.ly/4fSmgXP : (React & .Net Core API) Tutorials bit.ly/30fPDMg : AspNet Core MVC Tutorials
@ManishBhusal2 ай бұрын
I followed your four videos, and they are awesome! I've never seen this level of content and explanation before. Thank you so much! Love from Nepal ❤
@CodAffection2 ай бұрын
Really glad you found it helpful! and thanks for the feedback.
@CodAffection2 ай бұрын
The same is combined an Angular front-end; you could see the entire playlist here : kzbin.info/www/bejne/ennSfGVvqZ6roNU
@amrsaeed170724 күн бұрын
thanks you are the best instructor 🌹
@CodAffection24 күн бұрын
Appreciate the feedback.
@krishanthadharmasiri77253 ай бұрын
watched all the 4 videos in the series and coded along now i have a fully functional Identity API, thanks so much 🙏
@CodAffection3 ай бұрын
Thanks for watching the series, and I appreciate the time to write your wonderful feedback.
@drmaf50004 ай бұрын
It is a great 4-part tutorial. Many thanks.
@CodAffection4 ай бұрын
Thank you.
@Guitariste824 ай бұрын
Very good tutorial, I really appreciate all these relevant explanations.
@CodAffection4 ай бұрын
Glad you found it helpful.
@MrAliWave4 ай бұрын
First of all thanks for the great tutorials If i want to use an API Controller that inherits from ControllerBase and in order to gain access to ClaimsPrinciple's specific claim value in that case I need to use IHttpContextAccessor. Is that correct or I should use a different approach?
@CodAffection4 ай бұрын
Yes, you are correct. Sample code : learn.microsoft.com/en-us/answers/questions/1143595/asp-net-core-web-api-how-to-use-user-claims-in-ser
@MrAliWave4 ай бұрын
@@CodAffection Thank you very much for your response
@rishukumar75864 ай бұрын
can you please explain the use of claim tables? when do we need them ?
@CodAffection4 ай бұрын
The term claims means pieces of information about a particular entity. The table 'UserClaims' will be used for storing user claims. while the 'RoleClaims' table will store claims related to roles. These tables are not used in JWT authentication but could be used in cookie-based authentication.
@rishukumar75864 ай бұрын
@@CodAffection can you also make a video on using claims table as well ?
@imtiazdahar84512 ай бұрын
After searching long time, finally found a video on Roles, Claim & Policy. I have an assignment that Roles must be dynamic, means that in [Authorize(Roles = "Admin")] must not be constant, it can vary and dynamic (could be changed on runtime rather than putting hardcoded). How can I achieve this, can you guide me or make a video on this? I would be very thankful.
@CodAffection2 ай бұрын
Thanks for the feedback, I've actually seen an msdn article on the topic, let me check what I can do.
@shoaibgoraya659725 күн бұрын
Kindly Guide how we can manage dynamic Roles and Permissions in database. Like an admin can dynamically add new Roles and Permissions as in this case we are defining policies manually in the code. I am new in dotnet so I have searched a lot but not found any way to achieve it. Please guide how to do it or refer to any tutorial if you know
@CodAffection24 күн бұрын
Didn't find a resource what you are looking for. But I will try to include your requirement in similar upcoming tutorials. Meantime, please go through following resources. Add New Role : stackoverflow.com/a/19541593/4133590 Assign a role to a user : stackoverflow.com/a/20971585/4133590