Build a RESTful API in ASP.NET 6.0 in 9 Steps!

  Рет қаралды 74,145

tutorialsEU

tutorialsEU

Күн бұрын

Пікірлер: 62
@MortezaMadadi
@MortezaMadadi 2 ай бұрын
Unlike other videos wasting the time on KZbin, your video is short, useful, and right to the point. Thank you!
@robertmurrell3852
@robertmurrell3852 11 ай бұрын
I can't tell you how long I've been looking for a resource to teach me how to build an API like I didn't already know how. Thank you so much for this!
@dragonfalcon8474
@dragonfalcon8474 2 жыл бұрын
This was actually very helpful. A nice overview, of a subject that can be complex depending on the scale of the project.
@tutorialsEU
@tutorialsEU 2 жыл бұрын
🚀C# Progress Academy - Skyrocket your C# skills with the ultimate course bundle: academy.tutorials.eu/p/csharp-progress-academy
@hassanqayyum3134
@hassanqayyum3134 2 жыл бұрын
make scalable and secure rest API in ASP.Net 6 by following best practices and Architectural Principles.
@SheCreatesGames
@SheCreatesGames Жыл бұрын
I really like how simple and useful this is! Your explanations made RESTful API so easy to understand
@estar500
@estar500 Жыл бұрын
Excellent video, I especially like how short and to the point it is.
@Tty490
@Tty490 Жыл бұрын
Thank you for the nice teaching. I had watched another longer video before this one, so was able to understand better than a newcomer would. I had to slow down the video though since it was too fast for me. suggestion - If possible please add a description of what Swagger is and what it does. Thanks
@weamhaleemi4984
@weamhaleemi4984 2 жыл бұрын
Thank you ! super beneficial in just 12 minutes
@vaidasrackauskas2371
@vaidasrackauskas2371 Жыл бұрын
The fastest and simplest explanation I've seen. Thank you!
@arsarsars1able
@arsarsars1able 2 жыл бұрын
Helpfull video. Thanks and love to watch more to increase my knowledge. If someone was a bignner he can easy learn from this video.
@中国彭延超
@中国彭延超 Ай бұрын
Short and nice, suitable for me!
@jeetendraprasadPune
@jeetendraprasadPune 2 жыл бұрын
Nice and Simple for beginners.😃
@kopilkaiser8991
@kopilkaiser8991 11 ай бұрын
Best teacher in the industry ⭐️👏
@publicalias8172
@publicalias8172 Жыл бұрын
Really like this style of video. It may not be for absolute beginners how to setup the IDE etc- but there are so many videos covering those topics, we need more hands-on THIS IS HOW TO DO IT videos! lol
@prohacker5086
@prohacker5086 Ай бұрын
Your intro is very energetic I'm glad I habe clicked on this video
@srinithipanand7476
@srinithipanand7476 5 ай бұрын
You really helped me out for my work. It was really really really a great help. God Bless.
@jordantrajkov9549
@jordantrajkov9549 3 ай бұрын
Love it thank so much
@ramseykarr6870
@ramseykarr6870 2 жыл бұрын
Very good tutorial... keep the videos coming....🙏
@KwidzaxD
@KwidzaxD Жыл бұрын
One of the principles of the Restful api is not to use verbs in the Uri so instead of /GetAll it should be /all
@rehamalbulushi520
@rehamalbulushi520 Жыл бұрын
your efforts are highly appreciated
@jasper5016
@jasper5016 Жыл бұрын
This is a really good video. I feel that MS unnecessarily made that DbCotext creation lengthy.
@1983jll
@1983jll Жыл бұрын
Thank you very much your tutorial makes it easy and also pretty understandable. I can now provide basic API in C#
@TaiwoAdefala
@TaiwoAdefala 2 жыл бұрын
Thank you, very helpful.... Can you help create a tutorial on how to consume a web service to be used in web api application?
@3am.D3v
@3am.D3v 8 ай бұрын
Tks , your lesson so ez to follow .
@FG-uk3in
@FG-uk3in Жыл бұрын
Excellent and very helpful video. Thanks a lot.
@yasirsaddiqui8171
@yasirsaddiqui8171 2 жыл бұрын
Thank you for uploading an easy and quick api learning tutorial. Now i would appreciate if you make another video and connect the same api with sql server db using stored procedure with authentication and authorization. Also the update not working please check.
@boyankrachev1560
@boyankrachev1560 Жыл бұрын
Yes, the Update is not working.
@paultaylor2054
@paultaylor2054 Жыл бұрын
you did a great job on this video thank you
@gustigusti2094
@gustigusti2094 Жыл бұрын
Compact and easy to understand. Thanks
@reetyt2017
@reetyt2017 2 жыл бұрын
A very simple to create API. One question though: is it ok to access directly the database from controller without using a unit of work or a data transfer object?
@tutorialsEU
@tutorialsEU 2 жыл бұрын
Hi, ideally you could create a data-access-layer and a CRUD-interface for accessing data but if you want to keep it easy for simple usage you can access the db directly from controller :-)
@nourazahraaharajli1800
@nourazahraaharajli1800 2 ай бұрын
What if I wanted to use sql server for the database connection rather than an in memory one?
@ryansmith6179
@ryansmith6179 6 ай бұрын
Hi nice stuff a little bit fast but a good starting point. Thanks
@a2011q
@a2011q Жыл бұрын
Hi, thank you so much, content is very helpfull.
@eliy5550
@eliy5550 Жыл бұрын
AWESOME TUTORIAL
@theodorn
@theodorn 2 жыл бұрын
Danke schön!
@Thomaskbird
@Thomaskbird Жыл бұрын
Great video, I've been running this code and trying to get the update to work, it seems as though everything is passed correctly but it never updates. Would you be able to provide any feedback on what could be causing this?
@brittosmonteiro
@brittosmonteiro Ай бұрын
I'm a frontend guy who had never had experience with C#. This tutorial was simply amazing. I followed the steps and it's working pretty fine. Thank you so much.
@rabinkos
@rabinkos 2 жыл бұрын
Hi I really enjoyed the video and learned a lot. Alas you got a bug. In CreateEdit method you cannot edit data, change context by just _context.SaveChanges() since you are not sending the new value back to db.
@guardadotube
@guardadotube 2 жыл бұрын
I had to add a line of code to detach the state prior to modifying the booking. As below: [HttpPost] public JsonResult CreateEdit(HotelBooking booking) { if (booking.Id == 0) { _context.Bookings.Add(booking); } else { var bookingInDb = _context.Bookings.Find(booking.Id); if (bookingInDb == null) return new JsonResult(NotFound()); _context.Entry(bookingInDb).State = Microsoft.EntityFrameworkCore.EntityState.Detached; bookingInDb = booking; _context.Update(bookingInDb); } _context.SaveChanges(); return new JsonResult(Ok(booking)); }//end CreateEdit
@riccarrasquilla379
@riccarrasquilla379 9 ай бұрын
thanks for the video
@charlesssgraham
@charlesssgraham Жыл бұрын
Awesome! 🔥
@chriscalver8595
@chriscalver8595 7 ай бұрын
Awesome
@Wild_cat_lovers
@Wild_cat_lovers Жыл бұрын
But you didn't told you crested a folder named as data
@alpaydemirr
@alpaydemirr Жыл бұрын
can i use this api in reactnative
@asteekgoswami7733
@asteekgoswami7733 Жыл бұрын
sir please make a video of restful api in asp.net with mongodb 🙏🥺🥺
@usamaafzal5482
@usamaafzal5482 2 жыл бұрын
Saved My Day
@Rishraff
@Rishraff 13 күн бұрын
Outdated and does not work.
@hateem8287
@hateem8287 Жыл бұрын
BookingInDb = booking; won't work since they're reference types C: we can do this instead: bookingInDb.RoomNumbner = booking.RoomNumbner; bookingInDb.ClientName = booking.ClientName; or simply: _context.Bookings.Update(booking);
@Rishraff
@Rishraff 13 күн бұрын
This tutorial goes way too fast. Also show us what we are going to be making at the start of the video.
@leonxrdo6561
@leonxrdo6561 2 жыл бұрын
Eiskalt von Coding mit Jannick geklaut
@stickyman18
@stickyman18 6 ай бұрын
horrible
@maksymilianzajac5262
@maksymilianzajac5262 Жыл бұрын
you should delete the video
@paulpich69
@paulpich69 Жыл бұрын
When I get to entering using Microsoft.EntityFrameworkCore; it tells highlights that namespace in red. Do you need to install any prerequisite package?
@proqnex
@proqnex Жыл бұрын
For anyone update wasn't work use this. if (booking.Id == 0) { _context.Bookings.Add(booking); }else if(booking.Id == null) { return new JsonResult(NotFound()); } else { _context.Bookings.Update(booking); } _context.SaveChanges(); return new JsonResult(Ok(booking));
@Rishraff
@Rishraff 14 күн бұрын
That core template is not available anymore. What do we use?
@Mcokumu
@Mcokumu 2 ай бұрын
thank you so much bro
@StefanoGabriele1983
@StefanoGabriele1983 Жыл бұрын
I don’t think is right to respond 200 and inside the json a 404: shouldn’t we respond 404 as a code result?
@ahmadzrein1867
@ahmadzrein1867 Жыл бұрын
thanks is there a video to work api restfull with .net maui
@Nolly_CIA
@Nolly_CIA 2 жыл бұрын
Vielen dank Jannick
Brutally honest advice for new .NET Web Developers
7:19
Ed Andersen
Рет қаралды 195 М.
Dependency Injection for ASP NET Core 6.0 - An UPDATED 2022 Tutorial
8:10
POV: Your kids ask to play the claw machine
00:20
Hungry FAM
Рет қаралды 21 МЛН
大家都拉出了什么#小丑 #shorts
00:35
好人小丑
Рет қаралды 101 МЛН
小丑妹妹插队被妈妈教训!#小丑#路飞#家庭#搞笑
00:12
家庭搞笑日记
Рет қаралды 37 МЛН
What is a REST API?
9:12
IBM Technology
Рет қаралды 1,5 МЛН
ASP.NET Core Crash Course - C# App in One Hour
1:00:44
freeCodeCamp.org
Рет қаралды 1,5 МЛН
Building a .NET 6 API Using TDD
1:38:59
Wes Doyle
Рет қаралды 146 М.
Adding JWT Authentication & Authorization in ASP.NET Core
17:24
Nick Chapsas
Рет қаралды 213 М.
POV: Your kids ask to play the claw machine
00:20
Hungry FAM
Рет қаралды 21 МЛН