You blew my mind with how good you explain things, I get c# in school and Im always lacking behind because the teacher goes over everything so quickly!
@legasy8255 жыл бұрын
Thanks. You just saved my life with these .net core role videos.
@Csharp-video-tutorialsBlogspot5 жыл бұрын
:-) Thank you. Feels great and motivated when we get to know our videos are helpful. Thank you for letting us know.
@UCnpypIAVuYoAN7h_LXsZS1g4 жыл бұрын
I'm new to this, but was able to get it to work...thank you so much! I look forward to watching more of the videos in your series (and watching all of the adds...to help support a good content creator)
@ramchandrathakkar20225 жыл бұрын
Thanks Mr.Venkat, you uploaded a this video almost after 1 week. I was early waiting for new video since 1 week.
@vaibhavtrikolikar49022 ай бұрын
Very nice Explanation Sir
@PabloMartinezfr3 жыл бұрын
You help me a looooooooooot. Thansk Pragym!!!
@useruser-pq9nl3 жыл бұрын
Thank you best teacher
@talkathiriify5 жыл бұрын
These Videos are much helpful Thank you very much.
@MmMm-tg5mq5 жыл бұрын
long time we missed you
@dhliu9687 Жыл бұрын
Thanks Venkat. go go 78/124
@Rekindle19762 жыл бұрын
2022 and still good. TY for you effrots.
@amirhanna62702 жыл бұрын
very nice
@marcol53744 жыл бұрын
Thanks a lot for the course, its amazing. Please tell me why in the CreateRole view is not necessary specify that the asp-controller is Administration but is enough specify asp-action="CreateRole"
@ivandrofly5 жыл бұрын
Please do Claims and Policy as well.
@Csharp-video-tutorialsBlogspot5 жыл бұрын
Sure Ivandro - We will in our upcoming videos. Thank you for the suggestion.
@forhor5 жыл бұрын
Thanks! Waiting for the next lesson.
@mukeshdepani83674 жыл бұрын
Thanks for the very important content, Could you please share the knowledge of Clean Architecture for ASP.NET Core?
@roylee81735 жыл бұрын
Hi, thank you for this amazing content! Do you have any plans for a lesson on LDAP authentication using ActiveDirectory to link to custom permission?
@sakthivel-lc9ni5 жыл бұрын
Nice explanation sir...
@silvesteronono41575 жыл бұрын
Thank you for the useful content
@foxlatinomx5 жыл бұрын
thank's, grate job man.
@adelalmansoury4 жыл бұрын
Thank you so much
@rayt68675 жыл бұрын
Can you please discuss CRUD operations with users and their roles. Thanks for this great series.
@Csharp-video-tutorialsBlogspot5 жыл бұрын
Sure Ray - That's exactly we will be doing in our upcoming videos.
@mohamed.elkholy2 жыл бұрын
what is the point of creating a role if I will need to hard coded it later on each page ????
@bashirmanafikhi5 жыл бұрын
I was waiting for this thank you
@harirajanala98655 жыл бұрын
Please Also Make A Video on Adding Custom Colomns To Role Manager Like as Identity Manager
@anandseniyar88144 жыл бұрын
Thank you Sir
@ShoniNemavhidi3 жыл бұрын
My roleManager object is always null any idea why that might be?
@ivandrofly5 жыл бұрын
Ahaha... I was just googling about this like 30 seconds ago! 😂😂😂😂
@Csharp-video-tutorialsBlogspot5 жыл бұрын
Hello Ivandro - I am glad you found our video :-)
@amberleaf55774 жыл бұрын
I too have the problem Dieter Munnik is experiencing. I have added custom fields to AspNetUsers using an ApplicationUser class inheriting from IdentityUser as in your other videos. In Startup.cs I have added .AddRoles() but I then get errors referring to ViewData["Title"] and RoleName usage in the Razor View. After commenting these out the View opens but is of no use to add records of course. But my other controller actions using standard models to open CRUD Razor Views all have errors referring to the CreateRoleViewModel requiring a primary key. Any advice?
@amberleaf55774 жыл бұрын
Extra info - it appears IdentityRole is missing a using directive or an assembly reference. Any help on where to add these would be appreciated especially as I find your examples the best on the web.
@agustinaaperlo46793 жыл бұрын
@@amberleaf5577 i have the same error
@agustinaaperlo46793 жыл бұрын
@@amberleaf5577 i have the same error
@lazarstevanovic12865 жыл бұрын
I missed you
@chekstats4 жыл бұрын
No parameterless constructor defined for this object. But if i define parameter less constructor, parameter constructor is not called.
@MuhammadRizwan-qz6qz3 жыл бұрын
Same problem
@janneman74 жыл бұрын
Hi , I'm encountering the following error when following your solution: An unhandled exception occurred while processing the request. InvalidOperationException: Unable to resolve service for type 'Microsoft.AspNetCore.Identity.RoleManager`1[Microsoft.AspNetCore.Identity.IdentityRole]' while attempting to activate 'Hybrid2.Controllers.AdministrationController'. Please assist
@antogkou4 жыл бұрын
did you manage to fix this?
@basepoint9874 жыл бұрын
services.AddDefaultIdentity(options => options.SignIn.RequireConfirmedAccount = true) .AddRoles() // just add this line into your startup and i think your problem is solved .AddEntityFrameworkStores();
@Sam-yb9ut4 жыл бұрын
@@basepoint987 this helped thnks
@jayjun84124 жыл бұрын
IActionResult is not working can ActionResult work the same?
@jayjun84124 жыл бұрын
also i am using Mysql as a database so how do i pass the rolename to the database