Dear Shamseer, the biggest trouble with your channel is, Activity Rate. You started the series on Auth with .NetCore & Angular, more than three months ago. Since then, there has been nothing new on your channel. No content. When you conducted a poll on what end-end application would we like to see you build, I was really excited thinking that it may be the start of something profound. But I guess, I was grossly mistaken. I fear, if you carry on this same way with your channel content, you'll soon experience an exodus of viewers/subscribers. Don't keep us waiting indefinitely, START SOMETHING. Oh, and Happy New Year 2025 in advance.
@CodAffection7 күн бұрын
Happy New Year, Completely agree with you, I was busy with creating an asp.net core mvc course which I promised earlier in the community post. Sorry for keeping you wating. planning to post videos as per schedule once I finish the course.
@mdasifalam94199 күн бұрын
Sir, Please create a playlist on HttpClient advance topic please , Sending values from header etc.
@CodAffection9 күн бұрын
That's a great suggestion!
@ParmarRavi16129 күн бұрын
Thanks sir
@CodAffection9 күн бұрын
Welcome
@zmareyshahi11 күн бұрын
Thank You very Much . i have watched Many Videos But this is Just Like i Have explained to you what i Want . i Cant than You Enough.
@CodAffection9 күн бұрын
I'm happy to hear it helped!
@NhãDanhPhương11 күн бұрын
I have never seen a video as remarkable as this. Your voice is so captivating, it gives me a surge of energy. Furthermore, your videos played a major role in helping me get out of the fog, and for that, I am extremely grateful. I sincerely hope you continue to make such quality videos.
@CodAffection11 күн бұрын
Very much appreciated the feedback.
@dhruvik076313 күн бұрын
I can't create mvc framework controller after updating package
@JosuéDiogoPedro13 күн бұрын
Finish to implement, some issues but stackoverflow helped kkkk. Thanks a lot Sr.... hugs from Angola
@JosuéDiogoPedro13 күн бұрын
So helpful. I'm learning angular and this videos are helping me so much. Thanks a lot Sr.... from Angola
@CodAffection13 күн бұрын
Glad you think so.
@md.rezaulkarim-199216 күн бұрын
This series is really awesome, i learn a lot from this
@CodAffection16 күн бұрын
Glad you found it helpful.
@gemryiler18 күн бұрын
Excellent work. Looking forward to the next one in this series.
@CodAffection17 күн бұрын
Appreciated!
@luiseduardodelgadogallardo329421 күн бұрын
I cannot make checkboxes work inside Dialog components, not even html native ones. Has anyone encountered the same problem?? 😔
@chikna_engr22 күн бұрын
MAKE THIS PROJECT TO THE ADVANCE LIKE DASHBOARD TYPES OR Leave application management system complete design beautiful UI as i see alot of the project is built made the UI is not attractive make an amazing UI also where there will be hierarchy application let's say if employee request for leave: it will go to the supervisor if supervisor didnt response than it will project manager will response like Like think about a big project with .net core angular we are with you Brother
@CodAffection22 күн бұрын
Greate suggestion. I will consider that for future videos.
@amrsaeed170722 күн бұрын
thanks you are the best instructor 🌹
@CodAffection22 күн бұрын
Appreciate the feedback.
@shoaibgoraya659722 күн бұрын
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
@CodAffection22 күн бұрын
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
@asandamkhize638723 күн бұрын
Pls help my viewbag is showing 0 on the dashboard for income , expenses and balance
@CodAffection22 күн бұрын
Pls try after putting break point in respective action while running in debug mode, to see actual problem.
@kopilkaiser899126 күн бұрын
Thank you for providing such a valuable and knowledgeable content. I really appreciate your efforts and hard work it making it possible for me to understand how Angular works wtih ASP Net. Much awaited content. I was looking everywhere to learn these two frameworks combination. Finally, found it. May God Bless you brother. 👍🏼
Hi please i had an error with my Employee.objects.all() it keep saying "the class Employee has no object member" what can i do to solve this ? thanks
@xmenxwkАй бұрын
58:50 beware of such paging if you have big data, you are still loading it all from db and sending to client which is doing the paging. If you have big data, do paging at server side by loading from db only what you need.
@NidaMomin-t6uАй бұрын
for me i dont know why its not showing the form in the webpage
@CodAffectionАй бұрын
Is there any error message?
@mazooths1575Ай бұрын
How to restore the deleted row? Please Reply
@sheshanfernando-uv1ujАй бұрын
very helpfull and explained really well, but it would've been better if you hadnt put the models and the controller methods inside the program.cs instead put in different folders and places to be more clear. thank you.
@CodAffectionАй бұрын
It's all sorted out in next video here : kzbin.info/www/bejne/gWW1gpKaZq2Nf7M
@SudhanManuelАй бұрын
Please don't mind me, your engish accent seems too made up. You are screaming in the micI feel. Sorry to say Cheta, please talk in your normal english. Don't do any style. Or else talk in Malayalam ony. I understand Malayalam.
@НикитаКорниенко-й6рАй бұрын
Please help me out with this error System.InvalidOperationException: Failure to infer one or more parameters. Below is the list of parameters that we found: Parameter | Source --------------------------------------------------------------------------------- userManager | Body (Inferred) userRegistrationModel | UNKNOWN
@CodAffectionАй бұрын
Have you tried this: stackoverflow.com/q/71609874/4133590
@jiga6559Ай бұрын
did you write frontend for that ?
@CodAffectionАй бұрын
Not to this specific backend, but with others like Node + MongoDB + Angular: kzbin.info/www/bejne/hJXconSLrNCInZY Node + Template Engine: kzbin.info/www/bejne/b4erhXeerNRsq5I
@kandinagireddyАй бұрын
I have one doubt. Why are you not using Database First Approach??
@HoàngAnhNguyễnDương-r4gАй бұрын
import { Component } from '@angular/core'; import { ReactiveFormsModule,FormBuilder } from '@angular/forms'; @Component({ selector: 'app-registration', standalone: true, imports: [ReactiveFormsModule], templateUrl: './registration.component.html', styles: `` }) export class RegistrationComponent { constructor(public formBuilder: FormBuilder){ } form = this.formBuilder.group({ fullname: [''], email: [''], password: [''], confirmPassword: [''], }); onSubmit() { console.log(this.form.value); } } Sir can you please help me with this error. form = this.formBuilder.group
@siyabongamdlalana47Ай бұрын
Thank you very much my good Sir i just finished this Angular Tutorial .I am now happy that i know how angular works . The injection and CORS ,form validation and service calls also the Toaster i was blank before the tutorial now i am super happy i now know the wiring and configurations of these components and backend WEB API you are a star now i can face angular interviews :) .
@CodAffectionАй бұрын
I'm glad you found the tutorial helpful and are now confident in your Angular knowledge! appreciate the time in writing the feedback.
@Micro_plus0xАй бұрын
Thanks
@KshitijaBharateАй бұрын
Which angular version you are used while creating project
@CodAffectionАй бұрын
Angular 16.
@mdkarim-ov9shАй бұрын
Really it's a very informative tutorial, Please make a tutorial of OpenAPI
@bhuvandwarasilaАй бұрын
Thank you for the great content! WIll complete!
@CodAffectionАй бұрын
All the best.
@bhaswatichoudhury4907Ай бұрын
Hello @Codaffection Shamseer, When are you going to start the series on full project development with Angular and .netcore like you promised? We've been waiting......
@CodAffectionАй бұрын
At present, I'm working on a premium course on Asp.Net Core MVC. Which is also done through a considerably big project. More on that will be shared soon. After that, you could expect the full-length project build tutorials.
@ProtikPC_pro_indigoАй бұрын
@@CodAffection Hi Shamseer CodAffection, I've been waiting for the new Angular and .NetCore full project series too. I remember, you also conducted a poll to decide what type of project it should be. Please don't keep us waiting for too long. I was pretty prepped up after following your recently concluded series on Angular and ..netcore Auth concepts. It left me wanting for more! : ) Hope you understand,
@prabirchoudhury8375Ай бұрын
Me too. I have the same request. please start the series soon,
@cricomedy7896Ай бұрын
❤
@cricomedy7896Ай бұрын
❤
@vamsikrishna9415Ай бұрын
Hi Bro when I use Version 6.0 it is not working
@CodAffectionАй бұрын
Hi, Angular 6 or .Net 6?
@vamsikrishna9415Ай бұрын
@CodAffection .Net 6 during the Add Migration
@PatrosAnimeАй бұрын
7:58 when i clicked new table an error occured called : "An incompatible SQL server version was detected " What should i do man?
@CodAffectionАй бұрын
Have you tried this : stackoverflow.com/a/27881800/4133590
@edsonferraz1Ай бұрын
Hello!! Do you have a exemplo this code without using Entity Framework
@CodAffectionАй бұрын
Not exactly, but this one should help you. kzbin.info/www/bejne/fqbTnoOkrpdmpqc
@xxxmin0uxxx858Ай бұрын
amazing tutorial , can you share with us your vscode theme ?
@shabbufatehАй бұрын
Very basic question but how can we have that web interface for angular work without saving changes? I've to save each change to see it in browser.
@CodAffectionАй бұрын
Sorry, I couldn't fully understand your doubt. What do you want to see in the browser without saving to the DB?
@shabbufatehАй бұрын
@@CodAffection No I mean your ts or html files. When you are editing, you can see the changes simultaneously but for me I have to first save the file to see those changes
@CodAffectionАй бұрын
@@shabbufateh please try to compare or make a copy of the component of mine from GitHub, and let me know how it goes.
@pnaraliogullari6863Ай бұрын
Could you please make a react.js version of this?
@CodAffectionАй бұрын
I was planning to do it, let me check what I can do.
@pnaraliogullari6863Ай бұрын
@@CodAffection Thanks in advance!
@ioaneaslamazash9294Ай бұрын
thank you for a video! I've a question, why don't clear cookies after logout? when I am trying login again, session is active and don't redirect Identity's login page. after logout deleted localStorage and sessionStorage, but cookies not.
@CodAffectionАй бұрын
thanks for the feedback, did you meant the session cookie?
@CodAffectionАй бұрын
Normally, during logout, only deleting the valid token from the client side (local storage) is necessary, because from there onwards, the client doesn't have any valid token to pass to the server. In case of token-based authentication, as we said, token-based authentication is stateless; there is nothing stored on the server side (so no cache is assigned on the server side) indicating such and such a user has successfully authenticated to the system. A user is authenticated or not, authorized or not, everything could be deducted from the token passed along with the request.
@ProgrammingNoobАй бұрын
Please also add functionality so that an admin can change the role or rights of any user. like accessing specific modules, updating it only or just viewing it fields only etc. admin can change the each right of of each module of the user
@CodAffectionАй бұрын
That's a great suggestion, I'll keep it in mind for future videos.
@madurangamayadunna6928Ай бұрын
thank you. this help to make my project. could you make some example on Angular 18 and node js. i need to use google map api to my project. would you can explain how i make this success
@vaishnaviMohan-x4yАй бұрын
hi im unable to add any transaction in my project?can someone help me how to resolve it
@CodAffectionАй бұрын
Is there any error message? if not seen, try to run in debug mode with breakpoint in respective action method.
@vaishnaviMohan-x4yАй бұрын
@@CodAffection yes it is showing failed to load resource error 404
@matthewkk5087Ай бұрын
do you have tutorials without minimal api? you dont use controllers
@CodAffectionАй бұрын
Previously with Angular 7, I've discussed the same topic with Asp.Net Web API, here : kzbin.info/www/bejne/b4i5eGCqjdFqjqM
@sasindudilshan6679Ай бұрын
Learnt a lot from you sir! Thank you very much. Please continue these tutorials about Angular and .NET
@CodAffectionАй бұрын
Glad to know that you are enjoying the tutorials. Sure more videos are about to come.
@chikna_engr22 күн бұрын
@@CodAffection MAKE THIS PROJECT TO THE ADVANCE LIKE DASHBOARD TYPES OR Leave application management system complete design beautiful UI as i see alot of the project is built made the UI is not attractive make an amazing UI also where there will be hierarchy application let's say if employee request for leave: it will go to the supervisor if supervisor didnt response than it will project manager will response like Like think about a big project with .net core angular we are with you Brother
@MSivaramprasadАй бұрын
Good video. Can you please push the changes to git hub. Thanks so much.