This was an excellent overview of core concepts. Fantastic work and ability to provide low level details without getting off track. Thank you very much for sharing this with the world you are a tremendous instructor. It deserves more views and you deserve more subs!
It covers most of the .Net core interview questions. Explanation to each question is awesome and explained very clearly easy to understand when you see this first time itself. Thanks for the video.
Thank you very much for providing interview questions without any cost. I have gone through these videos 10 times, and now I know the .net core/Angular/JavaScript/SqlServer/Webapi concepts. finally, I got an offer.
You may consider splitting each lesson into a RUclips short and releasing them this way. I think this could help drive traffic to your channel. Each one is so concise and rich with information
Excellent idea... I will definitely do this soon. Please keep suggesting. All my implementations are originated from ideas of the viewers like yours only. Thanks again.
@@interviewhappy what was most valuable for me was walking through the file structure, data flow and configuration. I come from a Java / spring background and have yet to find any good content that explains these beyond the superficial. Have you considered exploring testing? That is the next concept I would love to see detailed using your approach. Specifically API testing. Thank you again for the content it has been invaluable.
@@vamp9225 going deep in testing will be slightly off the road, because my purpose is to clear the basics and then focus on interview important things. Testing is not so much asked, but I will consider this in near future.
Hi Happy, the interview questions for .Net Core and Angular are very helpful. Because of these I'm able to prepare for both frontend and backend and able to clear interviews with ease. Keep up the good work.
This one video is enough to clear the technical round about the .NET Core. Thank you for this video and you earned one more subscriber. Keep posting...
Hi, @Happy, really happy to see your videos, it helps me understand the concept. Thanks a lot. I need one detailed answer about question 18. Can you please make a video for it.
Awesome ... you explained some very complex things very easily. I would love to see this in the form of blog. Please let me know if it is available. Thank you
Hi, please clarify below queries 1. Is it possible to add same service as singleton and transient at same time? 2. Is it possible to add multiple services with different lifecycle in an application?
Pls make Linq vedio , unit testing, How to call token based authentication api from unit test, design pattern, Entity Framework, Exception Handling, SECURITY in Web App and Web API (authentication & authrization, cliam and policys, sql server, )
A small rectification needed Sir, 32:30 TempData is used to pass data from Controller to COntroller, Please correct me If I am wrong Sir :) Apart from that this is very helpful video indeed, Thank you Sir 😇
Hi Happy, Thank you for the videos. Those are really helpful. In one of the the interview I gave recently interviewer asked if a question related to dependency injection. 1. services.AddSingleton(); 2. services.AddSingleton(); In above scenario 2nd will overwrite 1st. Suppose we have MathStudent and ScienceStudent and both refer to same interface IStudent and that have method like getStudent(). We will register in configureservices method but suppose I want to call MathStudent/ScienceStudent at specific condition the how to call it. Please correct me if I missed. Warm Regards, Amrut
Hi Happy, In real-time project how to decide when to call AddScoped and AddTransient. Could you please give few example and any thought process we need to follow so in actual task what need to be used. Thanks Amrut
if your service needs to maintain state or hold data specific to a request or operation, use AddScoped to ensure that the same instance is used within that scope. For example, payment services. But if data is not there and no state then use Transient, for example DB connection services.
Fantastic video.. really appreciate it.. it is very useful for instant understanding of the platform. Just one thing.. with the latest version of .NET startup file is removed so You can mention that too. Thanks again!
Knowledge is very easily gained from Videos. And I love this one, because it is straight to the point and informative. Thanks and awesome video. Subscribed!
I watched it and I tried to answer each question before you gave the answer. I am so happy because i answered almost all of them correctly and i am only 7 months into a level 3 software developer apprenticeship heheee!!! Amazing video!!
he siimply wanted to say, "If you got more than one middleware remaining, use the "use" method. Finally call the Run method to execute and break the middleware chain. (No more middleware can be passed after run)"
In your dependency injection example suppose I want to call GetStudent() of MathStudent in FirstController and GetStudent() of ScienceStudent() in Second controller. How are we going to do it ? Since Both MathStudent and ScienceStudent using same Interface.
Hi sir, your interview questions is very much to use full for cracking the interviews but I want to in dot net core with web api real time or course wise or mostly required curd operations videos for developing the application and use full the freshers for some expeariance ....... Can you provide as soon as possible sir. Real your teaching level is superb and very is to unalaization concepts very fast. I required mostly dotnet core with web api videos very urgent sir .. thank you sir.... still i wanting for your replying for your message sir....
This was an excellent overview of core concepts. Fantastic work and ability to provide low level details without getting off track. Thank you very much for sharing this with the world you are a tremendous instructor. It deserves more views and you deserve more subs!
Thank you so much Vamp.
It covers most of the .Net core interview questions. Explanation to each question is awesome and explained very clearly easy to understand when you see this first time itself. Thanks for the video.
Nice one and also check this Real E-Commerce App using .Net 5 and Angular 13
Thanks
ruclips.net/video/-IzpsC-0eBk/видео.html
Thanks a lot Sunil. I will bring more content shortly.
So far the only tutorial I've seen that takes it slow and doesn't require prior experience to soft design.
Thanks Gulam
Thank you very much for providing interview questions without any cost. I have gone through these videos 10 times, and now I know the .net core/Angular/JavaScript/SqlServer/Webapi concepts. finally, I got an offer.
Wonderful! Congrats @nagesh
Startup.cs is no longer available with .NET 6 .. Microsoft has removed it and you have to configure services in Program.cs itself
Yes but by making a few changes in program.cs file we can bring start up.cs file into picture .
There is only program.cs
DO have interview after an hour but stopping to appreciate the way you have explained Dependency Injection. Hatts off....!!
Excellent collection of questions with detailed explanation for review before the interview. Thank you.
Glad it was helpful!
Excellent 👌🏼 . Everything covered of .Net Core
Thanks Amarpreet. My best wishes if you are preparing for interviews.
Awesome... What an amazing video... it refreshed my skill after a 3 months gap. Hats off sir. Good job
Thank Anshika, it gives me power to create more.
I ever not seen any video like this . Awesome explanation and all questions covers .thank you sir .I love to see more video like this .👍
Nice one and also check this Real E-Commerce App using .Net 5 and Angular 13
Thanks
ruclips.net/video/-IzpsC-0eBk/видео.html
Thanks logic. Love your comment.
hello please help i m fresher as .net developer preparing for interview...please suggest me channels with good content for my prep. Thanks in advance
Really It's a very impressive and informative Video.
Glad you liked it@lakshmankumargupta829
Thanks Happy . It is awesome tutorial which helped in interview preparation
welcome Rashmi.. Wish you best of luck for your interviews.
You may consider splitting each lesson into a RUclips short and releasing them this way. I think this could help drive traffic to your channel. Each one is so concise and rich with information
Excellent idea... I will definitely do this soon. Please keep suggesting. All my implementations are originated from ideas of the viewers like yours only. Thanks again.
@@interviewhappy what was most valuable for me was walking through the file structure, data flow and configuration. I come from a Java / spring background and have yet to find any good content that explains these beyond the superficial.
Have you considered exploring testing? That is the next concept I would love to see detailed using your approach. Specifically API testing. Thank you again for the content it has been invaluable.
@@vamp9225 going deep in testing will be slightly off the road, because my purpose is to clear the basics and then focus on interview important things. Testing is not so much asked, but I will consider this in near future.
add any unit testing related questions
Thanks very much, it's cover All concept with a short explanation so we can easily remebar. Please upload more videos like this in also C#
And also for Blazor, please 🙏🏼.
Sure I will. Thanks Shubham for your kind words.
Pl
Sir you are very lucky for me... I am so thankful to you.... I cleared 3 out of 5 interviews with your help
Wonderful and Congratulations My Friend.
Awesome explanation . We are expecting many more to come
Thanks a lot for your comment. It motivates me to create more content.
Provide amazing understanding of many .net core concept.
Hi Happy, the interview questions for .Net Core and Angular are very helpful. Because of these I'm able to prepare for both frontend and backend and able to clear interviews with ease. Keep up the good work.
Excellent !!!. Just check pronunciation of couple of words. Rest all good.
Thanks Pratik
This one video is enough to clear the technical round about the .NET Core. Thank you for this video and you earned one more subscriber. Keep posting...
Thanks Srinu, that is my mission only. Interviews should not be a nightmare anymore.
This was really helpful! I really liked the pacing and conciseness of the explanations for each question. Thank you.
You're very welcome@ Jason
Great sir very effective tutorial . Very pls creata lot of vedio regarding the topics thanks sir for giving such a great knowledge
Thanks Atul. Sure I will create more videos so that every candidate can clear any .Net interview.
Great sir 🙏
It's amazing lecture for interview purpose. Thanks sir
Thanks Sheshnath
Thank you Happy for clear me Dependency injection pattern.
Welcome Rajnish. All the best for your career.
Amazing Explain. Pleasant to watch, waiting for many more to come.
Glad you liked it!
Thank you so much your video is really very helpful and cleared my dought about the middleware concept. Thank you so much by heart. Keep it up
Thanks Riti. Words like this motivates the content creators.
Very nice explanation sir, post More videos like this...
Thanks Tamilan, I will surely do.
Awesome and step by step explanations. Excellent work and useful tutorial.
Many thanks for your appreciation. All the best if you are preparing for interviews.
Thank U so much for the video and Really awesome explanation each and every question ....
Thanks Goute ... I wish you all the best if you are preparing for interviews.
Best interview question for .Net core
Thanks buddy and all the best for your career.
Nice explation ,
Create . net core Api and angular 8 interview questions
Nice one and also check this Real E-Commerce App using .Net 5 and Angular 13
Thanks
ruclips.net/video/-IzpsC-0eBk/видео.html
Thanks Chetan. Sure slowly slowly I will cover more topics.
Very well explained. Good efforts taken for presentation slides etc. Thanks
Thank you so much for sharing this video .
wc M.k
hi happy sir di explain is simple and good
provide on linq and angular
Thanks Narendra.. Noted. I will try to create more videos on .NET interviews.
Thanks a lot, you covered most of the topics.
wc Anupam
Very informative and helpful video. But only TempData definition is wrong.
Thanks Tushar.. Appreciate you liked it
Thank you man ! More than a mentor
Great Sir,
Please crate video on WEB API like this.
Thanks Rahul, I will create on web api shortly.
superbb explaination thanks alot .
Thanks and wc Syed
Nice Explanation ! Easy to understand !!
Thanks Pratik
Happy sir, you are great in simplifying leanings. Good luck for your future videos!!!
Thanks !
Thanks Raj. Good luck for your career and life.
What an explanation ....Just amazing...... Thankyou very much for ur hard effort and great explanation....
You are most welcome @Zahir
Hi, @Happy, really happy to see your videos, it helps me understand the concept. Thanks a lot. I need one detailed answer about question 18. Can you please make a video for it.
Thanks Karthik, I will try to cover it soon.
Excellent information Mr. thank you very much 👍
Nice one and also check this Real E-Commerce App using .Net 5 and Angular 13
Thanks
ruclips.net/video/-IzpsC-0eBk/видео.html
Thanks Manuel for your kind words.
Awesome ... you explained some very complex things very easily. I would love to see this in the form of blog. Please let me know if it is available. Thank you
Many Thanks friend... Blog not yet, but soon I will try
Great explanation sir jee 👍🏽👍🏽
Nice one and also check this Real E-Commerce App using .Net 5 and Angular 13
Thanks
ruclips.net/video/-IzpsC-0eBk/видео.html
Thanks pb ji
Excellent collections of topics to revise before giving .net interviews
thank, nice and easy to understand for most of them
Thanks Rahman, glad you liked it.
Really Great video.. so much learned from this video. :)
Thanks Shubham, keep learning keep growing
Great and Thanks Sir.
Thanks for your words Meera
Thank you so much. Please also share the coding test interview sessions if possible.
Sure I will try to do it soon.
really excellent and awesome
Thank you Suresh! Cheers! Wish you luck for your career.
Very helpful 👍Thank you so much sir
Excellent tutorial, To the point content, simple and brief explanation.
Very useful Thanks. Seems, TempData work is different (controller to controller)
Hi, please clarify below queries
1. Is it possible to add same service as singleton and transient at same time?
2. Is it possible to add multiple services with different lifecycle in an application?
1. No I don't think so, you might get some error.
2. Yes, some service can be singleton others can transient.
@@interviewhappy Appreciate your quick reply!! Thank you!!
Wonderful explanation... I came across so many videos, this is amazing and easy to understand
Glad you liked it
Awesome Sir !! Please create a Angular(2+ till latest) Interview questions also.
Really a good refresher
Thanks Yashvi
Pls make Linq vedio , unit testing, How to call token based authentication api from unit test, design pattern, Entity Framework, Exception Handling, SECURITY in Web App and Web API (authentication & authrization, cliam and policys, sql server, )
Sure Atul. This is specific to how to understand quickly and answer to the interviewer questions. But I will try to cover other topics in detail
Thank you Sir. This Video is very helpful...
A small rectification needed Sir,
32:30 TempData is used to pass data from Controller to COntroller, Please correct me If I am wrong Sir :)
Apart from that this is very helpful video indeed, Thank you Sir 😇
it is understood excellent overview of core concepts sir. but I can find a pdf of all questions and answer
Hi Happy,
Thank you for the videos. Those are really helpful. In one of the the interview I gave recently interviewer asked if a question related to dependency injection.
1. services.AddSingleton();
2. services.AddSingleton();
In above scenario 2nd will overwrite 1st.
Suppose we have MathStudent and ScienceStudent and both refer to same interface IStudent and that have method like getStudent(). We will register in configureservices method but suppose I want to call MathStudent/ScienceStudent at specific condition the how to call it.
Please correct me if I missed.
Warm Regards,
Amrut
If you want to use them on condition basis, then use IServiceProvider which will help in resolving instances at run time. You can explore this.
Hi Happy ,
Your videos are very helpful to me ,But For MVC and Entity Framework i did not find any video ,Please give link if that are avaialble
Thank you for the best explanation.i haven't seen the pdf in discription, can I get this pdf
Hi! great video! could you share the link of the presentation?
Thansk Valeria, yes I can but somehow I misplaced it. If I will find it, I will share.
finally understood DI , thanks a lot
Glad to hear that @parth7450
Really helpfull Happy, The effort you have taken to lift-up others is amazing.. my hearty congrats
Your Welcome Sir. Your words are inspiration .
U have touched lots of concepts
Great and clear explanation expecting more 🙏
Thank you, I will
Transient objects are always different; a new instance is provided to every controller and every service.
Great video
Thanks N-Channel
Please also cover those string array questions cause they are asked in many interviews for even experienced devs
Thank you so much! Great explanation for dependency injection. Finally I understood.
Glad it helped! Natalija
You are just amaizing man....hatsoff...
This video is just like blessing.
Thanku brother.Allah bless you:)
Hi Happy,
In real-time project how to decide when to call AddScoped and AddTransient. Could you please give few example and any thought process we need to follow so in actual task what need to be used.
Thanks
Amrut
if your service needs to maintain state or hold data specific to a request or operation, use AddScoped to ensure that the same instance is used within that scope. For example, payment services. But if data is not there and no state then use Transient, for example DB connection services.
Although your contents are so good
Very well explained sir
Fantastic video.. really appreciate it.. it is very useful for instant understanding of the platform. Just one thing.. with the latest version of .NET startup file is removed so You can mention that too.
Thanks again!
Very good tutorial!!
Thanks Neil, all the best for your career.
I read all your questions still
Object pooling, code to remove duplicate char from string, entity framework and Sp performance which is good and why
Great video. Thanks a lot.
Glad you liked it! Rasika Samith
Knowledge is very easily gained from Videos. And I love this one, because it is straight to the point and informative. Thanks and awesome video. Subscribed!
Nice one and also check this Real E-Commerce App using .Net 5 and Angular 13
Thanks
ruclips.net/video/-IzpsC-0eBk/видео.html
Thanks a lot techie
You mentioned.net core is loosely coupled right?
What abou .net?
Is this also loosely coupled?
Nice explanation
Thanks
Thank you!! Excellent work..
Nice explanation.
thanks
I watched it and I tried to answer each question before you gave the answer. I am so happy because i answered almost all of them correctly and i am only 7 months into a level 3 software developer apprenticeship heheee!!! Amazing video!!
Great Denitsa, I think it's the best way to practice.. wish you all the best for your career.
@@interviewhappy евала Деница, мачкай
Sir, At 21:18, you explain that run method is used to run the next method but it is used to terminate request pipeline.
he siimply wanted to say, "If you got more than one middleware remaining, use the "use" method. Finally call the Run method to execute and break the middleware chain. (No more middleware can be passed after run)"
In your dependency injection example suppose I want to call GetStudent() of MathStudent in FirstController and GetStudent() of ScienceStudent() in Second controller. How are we going to do it ? Since Both MathStudent and ScienceStudent using same Interface.
hi, could you also include few questions on EF core? Thank you for your support
Yes, will try GS
Sir do you have any course on liquid language?
Great sir , can we have pdf for all these questions?
Check description
Hi sir, your interview questions is very much to use full for cracking the interviews but I want to in dot net core with web api real time or course wise or mostly required curd operations videos for developing the application and use full the freshers for some expeariance ....... Can you provide as soon as possible sir. Real your teaching level is superb and very is to unalaization concepts very fast. I required mostly dotnet core with web api videos very urgent sir .. thank you sir.... still i wanting for your replying for your message sir....
Can you make videos on Azure interview questions?
Sir please create a video for Web API interview questions
Sure Bidyut, I will create video on Web API also that is a hot topic and very much in demand now a days
Amazing video, thank you very much man! :)
U really made me happy! thankyou!
Your Welcome. Rajat
this was excellent,thanks