Great tutorial! I am quite impressed by the attention to detail. A couple of times I found myself looking to solve an issue as I was going along only to realize that the answer was sitting there a few moments ahead in the video. My rating of 10! Thank you for this great video.
Recently I've been very interested in .net core and thanks to your tutorials I've learned a lot about it. So thank you once again Sir, we appreciate the effort.
Awesome as usual!. Please, more videos for "Asp.Net Core" because all the market going to this technology now. Also, 1 favor, if you can make a complete project with this technology, will be amazing. Thanks in advance.
Extremly helpfull, very structured, the word thank you onky may not describe I will chip in to your paypal account as soon as I complete all and get it working in my machine Again classic presentation to the point
Thank you for the great video.. I just have one question when I do "Add-Migration" MSSQL will be corrupted? cuz I lost my whole data.. do you mind what SSMS do you use? is there way for me not to affect other datas..?
Great Tutorials! But could you help about when you add the connection strings , ConfigureServices and when you put the lambda function options=> options.UseSqlServer the corresponding using statement it doesn't come up just : change signature option! What should I put in the using System. ??? Many thanks
Thank you very much for great video. BTW i just confirm that in the confirmPassword validation, you will get error when you pass object {validator: this.comparePasswords} instead of {Validator: this.comparePasswords}(capital V char). everything else work perfectly well for me(tested on angular 7 ang web api core 2.2)
Actually I don't know why this morning I copy your code form github and it didnt work, I try to change the v to V and it work, now I come back to my project and it doesnt work, I back to your original code and it works now :)
Love how you explain the details so fast and yet so clearly. I haven't finished it yet I'm stuck at 28:43 where the request should be successful. The columns UserName/Email/PhoneNumber are always NULL in the DB (NormalizedUserName = ANGELICARAMOS, UserName = NULL). It's been 2 days I'm searching the web for an answer but nothing so far so what am I supposed to do please? I'm using .NET Core v3.1 btw.
i am stuck just right behind you! :D The response from server seems to be bad. "500 Internal Server Error" and Unable to resolve service for type 'Microsoft.AspNetCore.Identity.SignInManager` did you solve your problem?
@@CodAffection i have also not been able to add "identityDefault" like you used in the video. Even though its not depreciated. I have identity installed from nuget also. Super confused and no idea why its not showing up. It says "iservice doesnt contain the definition"...
after 2 days finally found the solution and it was a damn easy 1! uhh, i just have to install Microsoft.AspNetCore.Identity.UI and it started working for me!
Hi Great tutorial again, great fans, May I know how do you know which library and method to use in your videos, I wonder how u learn the significant number of method to use in the first place?, specially the depth knowledge of DependencyInjector
I didn't try that. let me know if you face any problem. btw I'll be posting an article on this same topic with latest version of ASP.NET CORE and ANGULAR
@@CodAffection In ASP.NET Core 3.0, Entity Framework Core and Identity related packages have been removed from the Microsoft.AspNetCore.App metapackage. stackoverflow.com/questions/58090177/identity-asp-net-core-3-0-identitydbcontext-not-found
Could you do the same with Asp.Net Core 3? Much Appreciated. And am getting an error "Incorrect syntax near the keyword 'NULL'." once Update-Database command is executed. Please help me out. Thanks in advance
@@CodAffection It will be really helpful for Beginners like me. C Can you do A video particular on Dependency Injection and involve SOLID PRINCIPLE in the project.
Hello sir, why have you created Form validation in Service layer instead of Component itself? Is it a good practice to create FormBuilder in Service layer?
service formbuilder is more helpful if you want to share them in more than one component. other wise you can have formbuilder inside the component itself.
Great Video !!! I was wondering why we no longer have to send an email to the registered user confirming that they are not a bot or confirming that they are a real person that registered?
sorry already this part was long. let's try some another time. actually you can try that at your end. there a column for emailverification, initially you can reset it as false. then send an email with random generated query string with seperate web api method. inside the metod you set the emailverification column to true after verifying random query string(need to save during registration).
I have downloaded your example application and ported it to VS2019 and dotnet 3.1. My version does have 2 databases, yours (applicationUser) and mine which is a sample database to store fetch-data forecast. The CRUD for forecast fetch-data is working fine but not the login and register. Can you please reupdate your video with VS2019 (perhaps with 2 databases) please? Your video is awesome. I learned a lot from it.
Hello Sir! Great Chenal, I am your subscriber and new in asp.net. Sir, I am facing a problem in wpf app. I want to show a graph in a moveable and resizeable panel in Form. Kindly if u could help will b grateful.
Thank you bro for the detail tutorial, can you please let me know how can i add more tables into the Identity Core web api so that i can create more apis for those tables. Thanks
@@CodAffection Could you please list out the steps to add this AuthenticationContext if I already have a migration present. I tried Add-Migration "ApplicationUser" -Context WebAPI.Models.AuthenticationContext but the console gives me a StackOverflow in red error after build succeeded.
Hi . when i am trying to make the first post from POST man to the register route I am getting null values in parameters while debugging, even when i am passing values in request body. please suggest what i need to do to get parameter values to api.
In registration.component.ts, I noticed that res.Succeeded and element.Code failed due to case sensitivity. Is there a setting that would eliminate these types of errors?
Thank you Sir, Most Use full this Video for me and Solve my All Douts, But One Error Are Come in build time So Please Suggest me. error TS2420: Class 'NgRedux' incorrectly implements interface 'ObservableStore'.
But the problem is everytime you run your Angular project it gets a different host name and you hardcoded the one hostName in teh API. SO how do you detect hostName in teh API?
that's weird that it doesn't validate properly. You had it "service.formModel.valid". it doesn't work for me. But when I try this "service.formModel.invalid" It works fine with the validations.
I mean, the ANGULAR 7 CRUD WITH API is a ASP.NET project and this one is a ASP.NET Core. I am new so I don´t know the differences very well. Now I see there is the same "ANGULAR 7 CRUD WITH WEB API" but ASP.NET Core, but even though I prefer not to change what I already did with ASP.NET if I can
goo.gl/bPcyXW : Buy me a Coffee
goo.gl/3DefLb : JWT Login and Logout (Next Video)
bit.ly/3zktP96 : Update to Latest Version Here
bit.ly/3QiQOYw : CRUD Operations (Angular & .Net Core API)
bit.ly/403lUVC : Asp.Net MVC with Identity Core
bit.ly/3Ktqess : MEAN Stack CRUD
bit.ly/47yygKq : (Angular & .Net Core API) More Videos
bit.ly/4fSmgXP : React & .Net Core API Videos
Great tutorial! I am quite impressed by the attention to detail. A couple of times I found myself looking to solve an issue as I was going along only to realize that the answer was sitting there a few moments ahead in the video. My rating of 10! Thank you for this great video.
Glad you found the video helpful and thanks for your wonderful feedback!.
Recently I've been very interested in .net core and thanks to your tutorials I've learned a lot about it.
So thank you once again Sir, we appreciate the effort.
you are always welcome.
Awesome as usual!. Please, more videos for "Asp.Net Core" because all the market going to this technology now. Also, 1 favor, if you can make a complete project with this technology, will be amazing. Thanks in advance.
glad you found work helpful. I will consider your suggestion for future videos.
not really
sir i watched your video first time. You teach very good sir. just like that help us .
I love how you pronounce period. Great quality work.
I like the way u speak "Quick demo of this video tutorial"
HAHAHAHA..yeah yeah.
Thank you for creating the project, 3-4 days before same question i asked you in your old video comment section.
well hope you found it helpful.
Really very usefull tutorial to implement Identity with Angular 7.
Thanks so much!
Extremly helpfull, very structured, the word thank you onky may not describe I will chip in to your paypal account as soon as I complete all and get it working in my machine
Again classic presentation to the point
glad you found the video helpful and thanks for the support.
Nice tutorial dude! Very helpful with the great explanation. Keep it up. Done subscribed to your channel.
Glad you found the video helpful.
Booom! You're a crack! Greetings from Argentina!
Nicely explained and easy to learn. Great Video! Good Job.
Thanks a ton man in one video learned many things. Respect your work 👏
You are great, and you have a most interested chanel
thanks for your wonderful comment.
Keep up the good work! this will help a lot of people..
Nice video and well explained. Thanks for the video.
Thank you very much for your videos.
Thank you for the great video.. I just have one question when I do "Add-Migration" MSSQL will be corrupted? cuz I lost my whole data.. do you mind what SSMS do you use? is there way for me not to affect other datas..?
You're just AWESOME BRO..
It is very useful video!!!! Thanks!!!
Great Tutorials! But could you help about when you add the connection strings , ConfigureServices and when you put the lambda function options=> options.UseSqlServer the corresponding using statement it doesn't come up just : change signature option! What should I put in the using System. ??? Many thanks
Great video ! very clear tutorial, thanks !
Thank you very much for great video. BTW i just confirm that in the confirmPassword validation, you will get error when you pass object {validator: this.comparePasswords} instead of {Validator: this.comparePasswords}(capital V char).
everything else work perfectly well for me(tested on angular 7 ang web api core 2.2)
thanks for the comment, I need to check that.
@@CodAffection sorry that is my mistake, your code is correct. please skip my comment above.
Actually I don't know why this morning I copy your code form github and it didnt work, I try to change the v to V and it work, now I come back to my project and it doesnt work, I back to your original code and it works now :)
You are perfect , please upload login and logout video as soon as possible .
very good job. thank you
sure. glad you found the video helpful.
great Tutorial as usual and is very helpful as well..Just one quick ques for Angular7 which version of nodeJS have you installed on your machine
sorry, I don't remember. After this video I have updated node.js few times.
Thanks a lot sir, excellent training
Very helpful for me
REALLY HELPED ME BRO!! KEEP IT UP!!
Thank you very much, it helped a lot.
my pleasure.
Simply perfect, congratulations on the work!
thanks for the kind words.
veryy helpful. Thanks a lot
Love how you explain the details so fast and yet so clearly. I haven't finished it yet I'm stuck at 28:43 where the request should be successful. The columns UserName/Email/PhoneNumber are always NULL in the DB (NormalizedUserName = ANGELICARAMOS, UserName = NULL). It's been 2 days I'm searching the web for an answer but nothing so far so what am I supposed to do please? I'm using .NET Core v3.1 btw.
i am stuck just right behind you! :D
The response from server seems to be bad. "500 Internal Server Error" and Unable to resolve service for type 'Microsoft.AspNetCore.Identity.SignInManager`
did you solve your problem?
Might be due to version difference. I'll be create a full stack tutorial with Angular 9 and Web API in near future.
@@CodAffection i have also not been able to add "identityDefault" like you used in the video. Even though its not depreciated. I have identity installed from nuget also. Super confused and no idea why its not showing up. It says "iservice doesnt contain the definition"...
after 2 days finally found the solution and it was a damn easy 1! uhh, i just have to install Microsoft.AspNetCore.Identity.UI and it started working for me!
This works with Angular 10 also. I have tried it:)
BOOOOOM! Thanks so much for these videos! Really helpful :)!
glad you found this asp.net core tutorial helpful.
Does this follow database first approach. If not can you do a video which follows the database first approach
Hi Great tutorial again, great fans, May I know how do you know which library and method to use in your videos, I wonder how u learn the significant number of method to use in the first place?, specially the depth knowledge of DependencyInjector
He is brillient
Thank you for your tutorial. God bless you!
How are you Sir thank you for your hard-course its awesome, the background-color it will not be change !!! thank you
Man, you are good. ✌
I love your tutorials !! Is it possible to do the same with using IdentityServer ?
Thank you Sir.. This project was helpful
Glad to hear that
The best tutoria
Thanks a lot very useful
Is this very important sample example applicable to ASP.NET CORE 3.0 ANGULAR 8 ? If not what changes should be made.
I didn't try that. let me know if you face any problem.
btw I'll be posting an article on this same topic with latest version of ASP.NET CORE and ANGULAR
@@CodAffection
In ASP.NET Core 3.0, Entity Framework Core and Identity related packages have been removed from the Microsoft.AspNetCore.App metapackage. stackoverflow.com/questions/58090177/identity-asp-net-core-3-0-identitydbcontext-not-found
Could you do the same with Asp.Net Core 3? Much Appreciated. And am getting an error "Incorrect syntax near the keyword 'NULL'." once Update-Database command is executed. Please help me out. Thanks in advance
At 9:05 UseSqlServer remains underscored in red, what have you done there for it to disappear?
Thanks for great tutorial!
Could anyone explain what generates those response / error texts that are printed in console?
Great stuff
keep it going
Hey brother, so at 23:20 are we essentially creating a DTO, Data Transfer Object?
Hey mate,
Why don't you create a full series on how to develop a complete e-commerce web app using the Angular and .Net stack?
It's on my pending list. I'll try that later.
@@CodAffection It will be really helpful for Beginners like me. C
Can you do A video particular on Dependency Injection and involve SOLID PRINCIPLE in the project.
@@CodAffection buddy.. did u get a chance to work on this series? i mean to say ecommerce like @Skia mentioned?
Fantastic Tutorial..It will be very nice if you can do a complete Solution using .NET Core and Angular7...e.g An E-Commerce Site
thanks for your wonderful feedback, I will look into your suggestion.
You are a VERY good presenter. Please advise how I can donate.
thanks for the support.
Paypal donation link : goo.gl/bPcyXW
@@CodAffection Done. Keep up the great work. I'll happily continue payments.
Hello sir, why have you created Form validation in Service layer instead of Component itself? Is it a good practice to create FormBuilder in Service layer?
service formbuilder is more helpful if you want to share them in more than one component. other wise you can have formbuilder inside the component itself.
Thank you for your tutorials but I've a question. How to edit an existing user with .NET Core and Angular using Identity ?
Could you explain what's the porpose of appStructure?
excellent video - great job
can you share any example with store procedure?
Great Video !!! I was wondering why we no longer have to send an email to the registered user confirming that they are not a bot or confirming that they are a real person that registered?
sorry already this part was long. let's try some another time.
actually you can try that at your end.
there a column for emailverification, initially you can reset it as false. then send an email with random generated query string with seperate web api method. inside the metod you set the emailverification column to true after verifying random query string(need to save during registration).
Thank u for the awesome video explanation. can anyone one tell me which Visual studio version need to install i mean vs2015 or vs2017?
1:01:36 I get error " Object is possibly 'null' " because of ngIf, I'm using the latest angular, how can I fix it?
Thank you sharing a lot of knowledge
I wondering why are you not using material design for this project, thank you
hard to watch the video using material since he's using bootstrap.
Great !! I want Social Login Authentication !!
Some another time with latest vetrsion.
Thanks man for the effort .
Hi, Thank you first,
we can't use with repository pattern?
very helpful
Thanks for your organized example for implementing Ang 7 and .net core 2.2. can you please update this example with core 3.1 and Ang 9 or 10.
could you record a video how to do it with JWT (with core)?
I will cover that in next video as a continuation to this one.
@@CodAffection thanks mate
@@CodAffection
please in your next tutorial, could you generate JWT with Idenity Server 4 & Identity Core
Thanks in advance
I have downloaded your example application and ported it to VS2019 and dotnet 3.1.
My version does have 2 databases, yours (applicationUser) and mine which is a sample database to store fetch-data forecast. The CRUD for forecast fetch-data is working fine but not the login and register. Can you please reupdate your video with VS2019 (perhaps with 2 databases) please?
Your video is awesome. I learned a lot from it.
actually i have the same problem :/
Nice video, please create a video with Token Based Authentication in aspnet core. Thanks!!
I'm working on it.
Great video, thanks a lot!
Can you provide me the style.css file for this demo?
Why you dont use public AuthenticationContext(DbContextOptions options)
: base(options)
??
It is still possible to perform the video with Angular 12 :-) (with some small minor changes).
Hello Sir! Great Chenal, I am your subscriber and new in asp.net. Sir, I am facing a problem in wpf app. I want to show a graph in a moveable and resizeable panel in Form. Kindly if u could help will b grateful.
Thank you friend for all things. I have a question: Can I run ASP Net Core on Visual Studio Code (VS Code)?
yes.
@@CodAffection How can I do it? please describe me.
@@CodAffectionHow can I do it? please describe me.
Thank you bro for the detail tutorial, can you please let me know how can i add more tables into the Identity Core web api so that i can create more apis for those tables. Thanks
just use ef core . first create model class, then migrate.
@@CodAffection Could you please list out the steps to add this AuthenticationContext if I already have a migration present. I tried Add-Migration "ApplicationUser" -Context WebAPI.Models.AuthenticationContext but the console gives me a StackOverflow in red error after build succeeded.
you are awesome bro.. thank you verymuch..great job.please make on Node js too.please..
Thank for your wonderful feedback!, I will consider your suggestion for upcoming videos.
Very nice! Thanks! :)
You're a legend, buddy! #"Boooom"
Hi . when i am trying to make the first post from POST man to the register route I am getting null values in parameters while debugging, even when i am passing values in request body. please suggest what i need to do to get parameter values to api.
Solved it. I added [FromBody] to the PostApplicationUser parameters. In case anyone gets similar problem
thanks for the information. let me know if you have any future video suggestion on angular or web api.
Perfect , so much helpful
Hi will you be able to give tutorial one on one?
does it use MS-SQL for Database ??
if not how can i use MS-SQL for Database in this?
In registration.component.ts, I noticed that res.Succeeded and element.Code failed due to case sensitivity. Is there a setting that would eliminate these types of errors?
Sir , how can i make a login form without using jwt , just a normal identity? can you make a little video according to this project??
thank you so much
thank you very much for ur helpfull toturials
but i want you to make video for crud toturias with upload attachment and imags ,
thanks again man
file upload will be covered in future videos.
@@CodAffection thank you
Thank you! Love your content
glad you found it helpful.
Thank you Sir, Most Use full this Video for me and Solve my All Douts, But One Error Are Come in build time So Please Suggest me.
error TS2420: Class 'NgRedux' incorrectly implements interface 'ObservableStore'.
Hi sir thank u for your tutorial.
how to open your second project Angular7 in vs 2017.
perfect. thank u so much.
But the problem is everytime you run your Angular project it gets a different host name and you hardcoded the one hostName in teh API. SO how do you detect hostName in teh API?
that's weird that it doesn't validate properly. You had it "service.formModel.valid". it doesn't work for me. But when I try this "service.formModel.invalid" It works fine with the validations.
Please make a video with email confirmation registration and reset password. Thank you very very mutch!
sure for next time.
Can someone tell me if I can use the same project used in ANGULAR 7 CRUD WITH API, because of the projects names I am a little confused.
I mean, the ANGULAR 7 CRUD WITH API is a ASP.NET project and this one is a ASP.NET Core. I am new so I don´t know the differences very well. Now I see there is the same "ANGULAR 7 CRUD WITH WEB API" but ASP.NET Core, but even though I prefer not to change what I already did with ASP.NET if I can
Hope you can let me know if you face any problem.
why dont you use directly angular project instead of web-api project?
Thanks, Please make a video about roles authorization, please. I'm looking for it
sure.
Where do you got the Text in the appStructure.txt from?
manually typed :)