ASP.NET Core Web API and Entity Framework Core - Full Course Including CRUD

Sdílet
Vložit
  • čas přidán 27. 08. 2024

Komentáře • 63

  • @gopalv5314
    @gopalv5314 Před 5 měsíci +2

    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".

  • @suaeb175
    @suaeb175 Před rokem +8

    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

  • @santoshparker8681
    @santoshparker8681 Před 8 měsíci +2

    Awesome tutorial, really enjoyed it. Do upload more videos on CZcams. We want from more .net knowledge from you.

  • @umariqbal5558
    @umariqbal5558 Před rokem +10

    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 :")

  • @suaeb175
    @suaeb175 Před rokem +3

    Best .Net core teacher on CZcams ❤❤🎉

  • @janardhanai9403
    @janardhanai9403 Před 4 měsíci +1

    Hello Sameer, just want to let you know, you are a wonderful teacher. Thank you for such a great tutorial.

  • @KenlieroGames
    @KenlieroGames Před rokem +3

    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
      @SameerSaini  Před rokem

      Hey, Thanks for your comment, just to understand this further, is Udemy app noy working on chrome OS? Is that what you mean?

    • @KenlieroGames
      @KenlieroGames Před rokem

      @@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.

    • @SameerSaini
      @SameerSaini  Před rokem

      @@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

  • @user-tl7yu3bb3f
    @user-tl7yu3bb3f Před 6 měsíci

    i bought your course and so far i absolutely love your teaching. Thank you for your work.

  • @nelsonrivers8546
    @nelsonrivers8546 Před 3 měsíci +1

    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.

  • @ronaldjohnson4470
    @ronaldjohnson4470 Před 9 měsíci

    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.

  • @saiyt8145
    @saiyt8145 Před rokem +1

    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.

  • @victorilu
    @victorilu Před rokem +1

    Thanks for tutorial, Easy to understand.

  • @chinnamedisetti364
    @chinnamedisetti364 Před 7 dny +1

    Good evening sir, how to install the sql server

  • @mdsarimrashidkhan7119
    @mdsarimrashidkhan7119 Před rokem +1

    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

    • @SameerSaini
      @SameerSaini  Před rokem

      Did you check out my Angular course with dotnet on Udemy?
      Disxount coupons in CZcams bio

  • @user-km9wn3zi2q
    @user-km9wn3zi2q Před 5 měsíci

    Perfect video for REST API :)

  • @syedmubeenhussain6317
    @syedmubeenhussain6317 Před 5 měsíci

    Thanks sir for creating this best Api tutuorial

  • @vishnusivan9382
    @vishnusivan9382 Před rokem +2

    Can someone let me know how he installed sql server management studio?

  • @user-bl5wx7xu1u
    @user-bl5wx7xu1u Před 5 měsíci +1

    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?

    • @SameerSaini
      @SameerSaini  Před 5 měsíci

      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

  • @abdomohd8429
    @abdomohd8429 Před 10 měsíci +1

    how to use Nuget Package console in Mac

  • @mounikamalreddy9810
    @mounikamalreddy9810 Před 10 měsíci

    Sammer, can you please provide videos on the Database First approach.

  • @valtonsejdiu4561
    @valtonsejdiu4561 Před rokem

    i belive you can use the select and then call the dto before making the whole request for all the fields from the database

  • @subhamsaha3553
    @subhamsaha3553 Před rokem +2

    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?

    • @SameerSaini
      @SameerSaini  Před rokem +3

      This is just a coding style my friend, many people use these 2 different styles, no difference at all

  • @piudutta5665
    @piudutta5665 Před měsícem

    Great

  • @rajrover038
    @rajrover038 Před měsícem

    Videos are not playing from section 2 in Udemy getting an Error

  • @user-tp4mn9vm7b
    @user-tp4mn9vm7b Před 8 měsíci

    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. "

  • @ImrX09
    @ImrX09 Před 2 měsíci

    Nice explanation

  • @slowmowfit
    @slowmowfit Před rokem

    Thank you for sharing!

  • @chikalawrence8502
    @chikalawrence8502 Před 5 měsíci

    Sir can you make a video on clean architecture in .net7

  • @jamajovlog
    @jamajovlog Před 11 měsíci

    Hi sir besides e-commerce do you have any other projects tutorial. If there is I would be glad to join you udemy class

  • @manasikale.3607
    @manasikale.3607 Před rokem +1

    It is really helpful

  • @user-gt5ww1tj7i
    @user-gt5ww1tj7i Před rokem

    the title means full course not a preview , so thanks

  • @KenlieroGames
    @KenlieroGames Před 9 měsíci

    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?

  • @debanjanbhattacharjee9477

    sir what to do , if after update-database command its saying "The ConnectionString property has not been initialized."?

  • @blessedbabysavi
    @blessedbabysavi Před 10 měsíci

    Plz make a video to convert json to obj

  • @prathameshgaikwad7550
    @prathameshgaikwad7550 Před 9 měsíci

    best video ever

  • @bhanuchaurasia6335
    @bhanuchaurasia6335 Před rokem

    Nice

  • @KenlieroGames
    @KenlieroGames Před rokem

    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...

  • @BeepBoop2221
    @BeepBoop2221 Před rokem

    Will you be making more videos?

  • @princeeshah5229
    @princeeshah5229 Před rokem

    When will you upload the next lecture video because u haven't discussed http put request

  • @castro4694
    @castro4694 Před 9 měsíci

    21:00

  • @mukulkanojia576
    @mukulkanojia576 Před 8 měsíci

    can we get your code git repo

  • @williampulling7275
    @williampulling7275 Před 4 měsíci

    FYI, your course on Udemy is still not working for over 5 days

    • @SameerSaini
      @SameerSaini  Před 4 měsíci

      Hi, not sure what do you mean by not working?

  • @AnandRaj-hq4zv
    @AnandRaj-hq4zv Před 2 měsíci

    Hi sir pls implement refresh token also in this app

  • @jehovajehova3573
    @jehovajehova3573 Před 5 měsíci

    bro remaining part put and delete

  • @HabiburRahman-xs9gb
    @HabiburRahman-xs9gb Před rokem

    If you're a mac user and can't find MSSQL server. this link will help you (czcams.com/video/9c7Ti2OcLZg/video.html&ab_channel=DataWithDominic)

  • @DiyorQurbonboyev-
    @DiyorQurbonboyev- Před rokem

    Umar Iqbal 🥰🥰🥰

  • @sayyorapardaeva5185
    @sayyorapardaeva5185 Před 9 měsíci

    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?

  • @magicalyou3177
    @magicalyou3177 Před rokem

    Sir i want to purchase this course . how i proceed. Help me

  • @justnazmus8140
    @justnazmus8140 Před rokem +2

    Hello Sameer, just want to let you know, you are a wonderful teacher. Thank you for such a great tutorial.