I've been doing a ton of these tutorials, and this one is BY FAR the best beginner tutorial. The pacing, the actual explanations and background info, the content, etc. are all fantastic. This video deserves more views than most of the others.
In spirituality, many times said Individual's will get their GURU when time comes. I feel now my Dot Net Core Guru has come into my life showering with knowledge and confidence. It's my turn to pay gratitude to buy your Udemy course which are helpful to me. Bottom of my heart "Thank You Guruji".
Thank You So much, was beating my head on the wall to undersand end to end API creation, especially the part to connect EFC to the SQL server and the Migration
This is so well explained. Going through logical steps and explaining how it is built, and how it runs, without short cuts, leaving no things explained, in a way that everything is easy to understand. I will buy your entire course. UPDATE: Well, I did buy it, just to realize it does not work on Chrome OS, when I am out of home, so I can not utilize it much at all, since my most learning opportunities are out of home... Would be better if the videos were more reachable, using format that works on most platforms... Let me guess, it does not work on my android phone either?
@@SameerSaini No, it gives some kind of video error and can not display most of the videos. Few first ones it can. I tried it at home with windows and it works perfectly on Windows system. It must lack some kind of support for Chrome OS. I installed app for my android, and with that it works perfectly, which is nice. I just wish my view would be larger, to see code better. But at least I can study with my mobile phone now.
@@KenlieroGames Sorry to hear that could you check with Udemy if they have support for this, they should have an answer to this Sorry mate but not of much help regarding the udemy's platform
Sir you literally teach so good , I mean your full stack lectures gives one a lot of confidence and we also have all the basic how know of all three stacks , Thank you so much , have finished all your full stack videos , anxiously waiting for Admin Student Portal Course to be available for free :")
Thanks for the wonderful explanation.Really helped me to solve the problem of connecting to an existing db. I executed "Update-database" after commenting out the code in Up() method as initial migration ended up with errors.
Great teacher Sameer, love your teaching style. I have bought the course, however, I did noticed the sound does not work in Microsoft Edge browser, but i was able to get the sound on all my other browsers. That might be a Udemy problem using the Edge browser. Thank you Sameer.
I want to be able to download your 10 hour Web API development course as a .MP4 set of videos (or one big video). Can I do that ? I really like your teaching style. It works for me. Just wish I can buy it, then put in on my laptop, ipad, and windows desktop machine in .MP4 format.
Could you tell me we achieved dependency injection or not here? Because db context directly passed to the controller, so it is tightly coupled right? And if we want to change data source controller also needed to change right?
That is right, but later on in the course, I extract dbcontext from the controller and use a repository pattern to achieve dependency injection correctly
In all the previous videos i have seen DbContext injection like this : (with the underscore) { private readonly MyDbContext _dbContext; public MyController(MyDbContext dbContext) { _dbContext = dbContext; } and you used it like this : { private readonly MyDbContext dbContext; public MyController(MyDbContext dbContext) { this.dbContext = dbContext; } so is there any difference of what these two achieve in terms of scope or functionality or its just a choice of code style?
I have a question. If I have created a API project, based on this course. Lets assume I have manipulated data for some time via Client. Then it is possible to afterwards use Migration to add more columns and rows, if I noticed that my database should have more columns and rows for the new data? So, that it does not destroy any existing data, but add some new columns and rows, to expand database with new data? Also, another question. I am in the middle of this course now. Is it easy to convert it to .NET 8? Or should I just continue with .NET 7 until its finished?
THIS ERROR IS COME ONADD- MIGRATION CAN ANY ONW HELP "No database provider has been configured for this DbContext. A provider can be configured by overriding the 'DbContext.OnConfiguring' method or by using 'AddDbContext' on the application service provider. If 'AddDbContext' is used, then also ensure that your DbContext type accepts a DbContextOptions object in its constructor and passes it to the base constructor for DbContext. "
I have been using MySQL. Do you think it is possible to follow your full course, and create a Web API by using MySQL (Workbench), without too major modifications? To my understanding I need different nuget packages for it at least, and some differences in connector... Language itself is more or less the same...
After adding into GetAll method "Add" my project shows error: CS0117 'RegionDto' does not contain a definition for 'Add' NZWalks.API C:\workspace\Employee\Employee.API\Controllers\RegionsController.cs Have you added something to RegionDto?
DbContext 43:53
Dependency 💉 53:49
Add Migration 1:01:00
DTOs and Domain model 1:25:00
Advantage of DTOs 1:28:05
Conversation domain models to DTOs
HttpPost create 1:39:55
I've been doing a ton of these tutorials, and this one is BY FAR the best beginner tutorial. The pacing, the actual explanations and background info, the content, etc. are all fantastic. This video deserves more views than most of the others.
In spirituality, many times said Individual's will get their GURU when time comes. I feel now my Dot Net Core Guru has come into my life showering with knowledge and confidence. It's my turn to pay gratitude to buy your Udemy course which are helpful to me. Bottom of my heart "Thank You Guruji".
Thank You So much, was beating my head on the wall to undersand end to end API creation, especially the part to connect EFC to the SQL server and the Migration
I'm glad you liked it
Hello Sameer, just want to let you know, you are a wonderful teacher. Thank you for such a great tutorial.
Thank you buddy,
Best .Net core teacher on TH-cam ❤❤🎉
Awesome tutorial, really enjoyed it. Do upload more videos on TH-cam. We want from more .net knowledge from you.
i bought your course and so far i absolutely love your teaching. Thank you for your work.
Hello Sameer, just want to let you know, you are a wonderful teacher. Thank you for such a great tutorial.
This is so well explained. Going through logical steps and explaining how it is built, and how it runs, without short cuts, leaving no things explained, in a way that everything is easy to understand. I will buy your entire course. UPDATE: Well, I did buy it, just to realize it does not work on Chrome OS, when I am out of home, so I can not utilize it much at all, since my most learning opportunities are out of home... Would be better if the videos were more reachable, using format that works on most platforms... Let me guess, it does not work on my android phone either?
Hey, Thanks for your comment, just to understand this further, is Udemy app noy working on chrome OS? Is that what you mean?
@@SameerSaini No, it gives some kind of video error and can not display most of the videos. Few first ones it can. I tried it at home with windows and it works perfectly on Windows system. It must lack some kind of support for Chrome OS. I installed app for my android, and with that it works perfectly, which is nice. I just wish my view would be larger, to see code better. But at least I can study with my mobile phone now.
@@KenlieroGames Sorry to hear that could you check with Udemy if they have support for this, they should have an answer to this
Sorry mate but not of much help regarding the udemy's platform
Sir you literally teach so good , I mean your full stack lectures gives one a lot of confidence and we also have all the basic how know of all three stacks , Thank you so much , have finished all your full stack videos , anxiously waiting for Admin Student Portal Course to be available for free :")
Thanks for the wonderful explanation.Really helped me to solve the problem of connecting to an existing db. I executed "Update-database" after commenting out the code in Up() method as initial migration ended up with errors.
Cheers Sai
Great teacher Sameer, love your teaching style. I have bought the course, however, I did noticed the sound does not work in Microsoft Edge browser, but i was able to get the sound on all my other browsers. That might be a Udemy problem using the Edge browser. Thank you Sameer.
Perfect video for REST API :)
Thank you for sharing your knowledge and for the effort you put into creating such an excellent course.
Thanks sir for creating this best Api tutuorial
Thanks for tutorial, Easy to understand.
Thank you for sharing!
Sir please give us an angular full course, I watched your weather app making it was so so much easy and good, please help us more with angular
Did you check out my Angular course with dotnet on Udemy?
Disxount coupons in TH-cam bio
Nice explanation
I want to be able to download your 10 hour Web API development course as a .MP4 set of videos (or one big video). Can I do that ? I really like your teaching style. It works for me. Just wish I can buy it, then put in on my laptop, ipad, and windows desktop machine in .MP4 format.
It is really helpful
Cheers mate
Sammer, can you please provide videos on the Database First approach.
Nice
i belive you can use the select and then call the dto before making the whole request for all the fields from the database
best video ever
Could you tell me we achieved dependency injection or not here? Because db context directly passed to the controller, so it is tightly coupled right? And if we want to change data source controller also needed to change right?
That is right, but later on in the course, I extract dbcontext from the controller and use a repository pattern to achieve dependency injection correctly
Good evening sir, how to install the sql server
the title means full course not a preview , so thanks
In all the previous videos i have seen DbContext injection like this : (with the underscore)
{
private readonly MyDbContext _dbContext;
public MyController(MyDbContext dbContext)
{
_dbContext = dbContext;
}
and you used it like this :
{
private readonly MyDbContext dbContext;
public MyController(MyDbContext dbContext)
{
this.dbContext = dbContext;
}
so is there any difference of what these two achieve in terms of scope or functionality or its just a choice of code style?
This is just a coding style my friend, many people use these 2 different styles, no difference at all
Can someone let me know how he installed sql server management studio?
Great
how to use Nuget Package console in Mac
I have a question. If I have created a API project, based on this course. Lets assume I have manipulated data for some time via Client. Then it is possible to afterwards use Migration to add more columns and rows, if I noticed that my database should have more columns and rows for the new data? So, that it does not destroy any existing data, but add some new columns and rows, to expand database with new data? Also, another question. I am in the middle of this course now. Is it easy to convert it to .NET 8? Or should I just continue with .NET 7 until its finished?
Yes you can seed data
Hi sir besides e-commerce do you have any other projects tutorial. If there is I would be glad to join you udemy class
Sir can you make a video on clean architecture in .net7
Videos are not playing from section 2 in Udemy getting an Error
sir what to do , if after update-database command its saying "The ConnectionString property has not been initialized."?
Umar Iqbal 🥰🥰🥰
Will you be making more videos?
THIS ERROR IS COME ONADD- MIGRATION CAN ANY ONW HELP
"No database provider has been configured for this DbContext. A provider can be configured by overriding the 'DbContext.OnConfiguring' method or by using 'AddDbContext' on the application service provider. If 'AddDbContext' is used, then also ensure that your DbContext type accepts a DbContextOptions object in its constructor and passes it to the base constructor for DbContext. "
Plz make a video to convert json to obj
21:00
When will you upload the next lecture video because u haven't discussed http put request
I have been using MySQL. Do you think it is possible to follow your full course, and create a Web API by using MySQL (Workbench), without too major modifications? To my understanding I need different nuget packages for it at least, and some differences in connector... Language itself is more or less the same...
can we get your code git repo
Not complete crud operations..just create and read only..no update or delete...
If you're a mac user and can't find MSSQL server. this link will help you (th-cam.com/video/9c7Ti2OcLZg/w-d-xo.html&ab_channel=DataWithDominic)
FYI, your course on Udemy is still not working for over 5 days
Hi, not sure what do you mean by not working?
Perez Jose Davis Larry Robinson David
bro remaining part put and delete
Hi sir pls implement refresh token also in this app
Sir i want to purchase this course . how i proceed. Help me
After adding into GetAll method "Add" my project shows error: CS0117 'RegionDto' does not contain a definition for 'Add' NZWalks.API C:\workspace\Employee\Employee.API\Controllers\RegionsController.cs Have you added something to RegionDto?