I like how you explained the details of the methods that you are using. Using the debugger to display what happends during a http request has really helped me understand what is going on under the hood.
Hi, I am getting a console window by default when I run the project. I can see the localhost url in the console and I need to manually open a browser and enter the url to open the window. Also, I am not getting IIS express option in the run option. How to fix this ? Please Help.
After converting console application into web application does it behave like web application only or both ??. My project demands properties of both console and web app. will this conversion work for me. I want to receive udp packet in realtime from a device in console application using udp socket then push that data in realtime to web clients.
you can use micro service concept for your console app you can add a new project into your existing solution and web application needs to be different IMO
i face problem my applicatiob shows error like System.InvalidOperationException: 'A public method named 'ConfigureDevelopment' or 'Configure' could not be found in the 'myfirstconsole.Startup' type.'
Thanks very helpful, you should consider putting the "WebHostBuilder in .net core" in the title on the first place. Almost skipped this video due to console application, didn't think it would be important.
Sir I have written same code as you. There are no syntax error also but when I run IIs Express there is an error coming in program.cs page in Main method. System.Exception:'Could not resolve a service of type 'MyFirstCoreconsoleApp.IwebHostEnviornment' for the parameter 'env' of method 'Configure' on type 'MyFirstCoreConsoleApp.StartUp'.' This was the exception. Pls help me sir I m learning.netcore from.ur videos.
I had been looking for this for a while and am amazed it is so simple. I still need to get it to work properly with my complex app, but hopefully I won't have to pull some monkey moves.
Hi , Your content is very good but please remove the background noise from your video, use any online site for removing this, it will be very helpful for us ( learners)
Hi Sir, You are explaining quite well however it is quite difficult for me to understand the methods used over there. I'm a beginner who doesn't have any idea about asp.net core. If possible can you explain the methods used over there? Thanks in advance.
I have converted the big console application into web app. but we have used console.write in the application which are big problem for me. you also use context.response.write instead of console.write while converting. but in my case which is not possible to replace all the places. Please help me on this.
So you are converting console to web and still you are using Console class for write method. Then I would say this is not the proper conversion. The best solution will be replacing the code otherwise if you will use any other technique like adaptor design pattern or override the write method then I think 1- it wouldn't be good code 2- you will have trouble in future
Can anyone help me with async await, tas and thread? I tried reading the documentation, searched stack overflow, searched a lot of videos on yt for no good. If someone can help, pls do it would be great
Terrible video.. promoting it for beginners with only knowledge of C# and assuming that the watcher knows all the concepts already. Gotta explain why are you using something, etc...anyone can read the documentation which is provided - you gotta make it simple for others.
Very nice to have someone actually teach a topic, too many just show what they can do. Well done.
So far so good, best video about Asp.net Core MVC I have ever seen. Love from Canada.
You are explaining how .net core actually works. Hats off!!!
Youre amazing, thanks for this full blown course.
I am loving this series, I am a beginner and you are explaining the concepts very clearly and easy to understand.
Glad you enjoy it!
Wow.. It was to the point. Thanks for this amazing video.
Very Explanatory videos, You made these tough names so simple for us,
Thank You
Thank you for the explanation - implemented very understandably.
I like how you explained the details of the methods that you are using. Using the debugger to display what happends during a http request has really helped me understand what is going on under the hood.
Very helpful tutorial for me...... thank you sir......
Best course for asp.net i'd ever see
Glad you like it ☺️
20:34 Shouldn't it be ConfigureServices instead of ConfigurationServices?
Correct
Very Nice Demo.👍👌
Great example sir
great series of video.
Very informative video
Thank you Mr. Nitesh, these videos are great tools for learning .Net Core.
This is very unique content
thank you a punch
Thank you Mr. Nitesh!!!
very great explination...for make clarity of the .net core flow
U are doing such an amazing job....with such detailed videos i m sure this series is going to be fun and grt learning
amazing sir, your fan after watching this video. really amazing stuff. you unveiled the mystry.
Glad to hear that
Love the "under the hood" programming :) continue please
you are really doing a great work .. Al the best for your bright future
Very detailed explanation.. Great Work..
Very good video!
Well explanation
Great Work sir ji.
Great effort, It makes learning so easy
Very nicely explained.
great series of video. very informative and explaining all the small parts without making any mess on watchers mind thank you very much
Very welcome
Hello Sir! I am using VS 2022 for Asp .NET Core MVC. My demo project is running well even though I did not install SDK on my laptop.
Thank you very much sir for such a wonderful video tutorial, and the way you, explain is really appreciable....
nice work. thank you
very nice explanation
very clear explanation from scratch it will be more helpfull if u do some sample project and upload it
Very informative. Thank you
Very helpful to understand the changes from dotnet core 2.0
very interesting
Thanks a lot Sir. I am from Pakistan listening your lectrers. I have also have youtube channal but you are great Sir...
Sir I'm not able to see the definition of methods(getting error-cannot navigate the symbol under the caret)
Hi sir please let me know
what changes needs to be done here if we r converting .net framework console app.
good explanation for convert web application
Why it is necessary to install SDK which is mention in your video of Setup
In description can you please add summary of video? It will be helpful to know or get highlight of video content.
Hi, I am getting a console window by default when I run the project. I can see the localhost url in the console and I need to manually open a browser and enter the url to open the window. Also, I am not getting IIS express option in the run option. How to fix this ? Please Help.
After converting console application into web application does it behave like web application only or both ??. My project demands properties of both console and web app. will this conversion work for me. I want to receive udp packet in realtime from a device in console application using udp socket then push that data in realtime to web clients.
you can use micro service concept for your console app you can add a new project into your existing solution and web application needs to be different IMO
Can we get Dependency Injection feature in .net core console application as it won't contain adding of Host Builder?
Bro your videos are amazing next video kb banao gy please jaldi banao ma asp.net core ki har video ka wait krta hon ap ki.
i face problem my applicatiob shows error like
System.InvalidOperationException: 'A public method named 'ConfigureDevelopment' or 'Configure' could not be found in the 'myfirstconsole.Startup' type.'
Thank you sir
We all waiting for next vedios sir.
Next video uploaded... Keep learning with us.
Thanks very helpful, you should consider putting the "WebHostBuilder in .net core" in the title on the first place. Almost skipped this video due to console application, didn't think it would be important.
maybe something like. "WebHostBuilder is where the magic begins in .net core ..."
I think, latest versions are coming with configure services already.
It always comes with predefined configuration. But in this video I was explaining how it really works by converting a console app to web app. :)
Sir .net core online padna hai is there any live class
No, as of now.
@@WebGentle when can I take live class
Sir I have written same code as you. There are no syntax error also but when I run IIs Express there is an error coming in program.cs page in Main method.
System.Exception:'Could not resolve a service of type 'MyFirstCoreconsoleApp.IwebHostEnviornment' for the parameter 'env' of method 'Configure' on type 'MyFirstCoreConsoleApp.StartUp'.'
This was the exception.
Pls help me sir I m learning.netcore from.ur videos.
Can I convert console to web in vs code..if yes I am facing issue like the SDK Microsoft.net.web specified could not be found
I had been looking for this for a while and am amazed it is so simple. I still need to get it to work properly with my complex app, but hopefully I won't have to pull some monkey moves.
This tutorial is really awesome. Thanks for uploading it. Could you also reply that How Configure and ConfigureServices methods are called?
Hi ,
Your content is very good but please remove the background noise from your video, use any online site for removing this, it will be very helpful for us ( learners)
i have an application with c# but Created with .NetFramework Not NetCore how can i convert it into webapplication ???????
Please refer to this doc
docs.microsoft.com/en-us/dotnet/core/porting/
Hi Sir,
You are explaining quite well however it is quite difficult for me to understand the methods used over there.
I'm a beginner who doesn't have any idea about asp.net core.
If possible can you explain the methods used over there?
Thanks in advance.
Great work
I have converted the big console application into web app. but we have used console.write in the application which are big problem for me. you also use context.response.write instead of console.write while converting. but in my case which is not possible to replace all the places. Please help me on this.
So you are converting console to web and still you are using Console class for write method. Then I would say this is not the proper conversion. The best solution will be replacing the code otherwise if you will use any other technique like adaptor design pattern or override the write method then I think
1- it wouldn't be good code
2- you will have trouble in future
thank you
very good tutorial if you possible any this course Hindi tutorial
Will try to add hindi subtitles
Bravo!
Can anyone help me with async await, tas and thread? I tried reading the documentation, searched stack overflow, searched a lot of videos on yt for no good. If someone can help, pls do it would be great
God Bless You!
I am not getting the option of Console App(.Net Core) option, can anyone help?
awesome
When next video will come Sir?
sir after doing all this things i cant run it on browser!!
gr8
public void ConfigureServices(IServiceCollection services) not ConfigurationServices
The voice is too low in video's hence suggesting to make bit louder. Thanks..!!!
Make playlist on web api
when next videos will be upload ?
Sir Please upload the next videos soon..
Please upload next video soon
Sir please upload next video
Please upload next videos
Hindi me bante sir yeh video.
Dost itni simple si to english h 😊
Please visit my hindi channel too
www.youtube.com/@nitishkaushikhindi
this could be a 10 min video
You make one
Terrible video.. promoting it for beginners with only knowledge of C# and assuming that the watcher knows all the concepts already. Gotta explain why are you using something, etc...anyone can read the documentation which is provided - you gotta make it simple for others.
When next video will come Sir??
Please uplod next video soon
Sir, please upload next video
Please upload next videos