Where does Angular 13 will feat on this projects, or it is not necessary to use that framework. I am try to learn how to build apps that will work in all Mobile Platforms.
I was having trouble with my links. You need to put a "/" at the start of asp-page links. I believe that the "/" makes it an absolute path whereas leaving it make the link a relative path.
Hey, no hate here just wanted to point out a couple of things. The first is that this probably the best educational video I have ever seen from the realm of IT, just because of its length (amount of content). However, I can't help but notice the different approach of the moderators. The first one is taking things step-by-step, explaining everything for example even the little things like . It is in my opinion this depth of explanation that separates great tutorials from mediocre ones. The second guy on the other hand, was going too fast in my opinion, and isn't bothered with explaining at all. Also the second guy left the previous guy's code and didn't expand on it, which just led to unnecessary confusion.
@53.46 even if you dont specify which model the Create view is going to work with, the application still runs fine without any problem. So it works with just return View() in the Create action
Thank you for this wondeful tutorial. Just a detail : the db insert should be done in the confirm page, because actually, it is inserted before we confirm the order. Anyway, it's a great tutorial.
Great work! I enjoyed it even though in some points I struggled to follow all the steps due to tons of visual and audible information XD. Thank you very much for this class!
minute 8 you forgot to mention when rendering is done in client machine with blazor or a frontend framework like Angular Vue React, the whole application si divided in 2 parts frontend for the above and a backend at your choice ( in this case c# ). The interaction then betwen frontend and backend it is provided by REST API services in most of the cases. Comparing to MVC or Web application where the interaction between frontend ( views ) and backend ( logic ) is not that much separated. and they talk directly thru c# code mimics of a client server app all in one I could say...
Seriously outdated info. Great that you updated and collected this all into one free video. I’d suggest going into minimal api, vertical slice architecture, I think you’ll find it more interesting and the audience find it more current and entertaining.
3:17 the save to database shouldn't be in Checkout.cshtml.cs because you do this save to db everytime we enter in OnGet() so before the user has really clicked on button "Confirm Order" (else what's the point of this button if the pizza is already save in DB)
Excellent tutorial! You are great teachers! Thank you for making this content free for all to learn and cheers to your journey on growing your RUclips channel ;)
you should be adding it AFTER you click on Confirm Order. BasePrice should be FinalPrice. the folder for models was originally called "Models" but in SQL portion of the project it is called "Model". the SQL portion is way too fast. recommend anyone watching to make heavy use of pause or slow it down to half speed.
This video helped me out so much, I have been developing int 4.5 framework for a while now, trying to upgrade my skills. This really helped me. I am thinking about signing up for your course. You video mentions Blazor server and MVC but I don't see these mentioned on the site mention am I missing it?
Nice snake oil tactics here at 1:26:37 No, "we" are not in the 'Thank You' page right now and the reason it doesn't work is because you didn't set the links properly. 1:26:44 No. The flow does not work flawlessly. That's what you just demonstrated. *For students:* asp-page="/CheckOut/ThankYou" First slash indicates the parent folder (= folder "Pages") of the rest of your Razorpage folders. So if you begin with that, you can always navigate yourself to the right folder and finally the page. Another example: asp-page="/Pizza" First slash is the parent (folder "Pages") and then you end up on the page already. So, simply always start with denoting the parent folder with... asp-page="/" ... and from there just go.
Hello, maybe someone knows why I'm getting the name "custom" when I choose from the given pizzas and when I create pizza and put the name, I get the pizza name correct
🚀Master ASP NET Development with our Premium Course: academy.tutorials.eu/p/asp-net-core-6-0-course-mvc-blazor-razor-ef-core
Where does Angular 13 will feat on this projects, or it is not necessary to use that framework. I am try to learn how to build apps that will work in all Mobile Platforms.
Finally a tutorial using the latest version and is actually good. Appreciate it so much
I was having trouble with my links. You need to put a "/" at the start of asp-page links. I believe that the "/" makes it an absolute path whereas leaving it make the link a relative path.
Hey, no hate here just wanted to point out a couple of things. The first is that this probably the best educational video I have ever seen from the realm of IT, just because of its length (amount of content). However, I can't help but notice the different approach of the moderators. The first one is taking things step-by-step, explaining everything for example even the little things like . It is in my opinion this depth of explanation that separates great tutorials from mediocre ones. The second guy on the other hand, was going too fast in my opinion, and isn't bothered with explaining at all. Also the second guy left the previous guy's code and didn't expand on it, which just led to unnecessary confusion.
True that.
Thanks alot for you feedback! For our updated video we will keep that in mind!
Greets, the second guy (Jannick)
True. The syntax guide to create dog data, it was way too overwhelming due to blitzing through it.
Thank you for such a useful and helpful video. This have helped me increase my understanding in this area of topic.
Хороший курс, после него большая мотивация написать свой проект,в общем лайк!)
@53.46 even if you dont specify which model the Create view is going to work with, the application still runs fine without any problem. So it works with just return View() in the Create action
Currently going through wpf section of your c# master class this is probably above me but love what you do
What a worthy tutorial, you have keen eye for details that help beginners , thank you so much.
Great!!! Enjoyed the course . Very Helpful . Thanks
This video is so great. I really recommend it to you.
Is it me, or the order record in the db gets updated on each get request to the checkout page and not when the user clicks the Confirm Order! button?
Thank you for the tutorial! It's really the best one I have seen so far!
Thank you for this wondeful tutorial. Just a detail : the db insert should be done in the confirm page, because actually, it is inserted before we confirm the order. Anyway, it's a great tutorial.
Did you manage to do that? If yes could you tell how you did it, please?
welcome back and thank you for the tutorial
Thanks Mikiyas. You can expect quite some videos in the next months
amazing tutorial! i was struggling for so long until i came across this
awesome!
I have no words...ty so much
Great work! I enjoyed it even though in some points I struggled to follow all the steps due to tons of visual and audible information XD. Thank you very much for this class!
You are profi! Nice work!!!
Outstanding course guys. I learned a ton. Thank you!
minute 8 you forgot to mention when rendering is done in client machine with blazor or a frontend framework like Angular Vue React, the whole application si divided in 2 parts frontend for the above and a backend at your choice ( in this case c# ). The interaction then betwen frontend and backend it is provided by REST API services in most of the cases.
Comparing to MVC or Web application where the interaction between frontend ( views ) and backend ( logic ) is not that much separated. and they talk directly thru c# code mimics of a client server app all in one I could say...
@@Okni301 huh?
It's not possible to do front-end rendering on server with react ?
Thanks, Great job.
Great tutorial, thank you very much! Going to get the full course ASAP!
Really nice tutorial, i really love that you go into details and explain them! Really nice work, i think i am going to take the full course !
Thank you for this great tutorial. It's so helpful and readable!
What a nice course you produce man. I'm really glad for that. Thanks.
Seriously outdated info. Great that you updated and collected this all into one free video.
I’d suggest going into minimal api, vertical slice architecture, I think you’ll find it more interesting and the audience find it more current and entertaining.
3:17 the save to database shouldn't be in Checkout.cshtml.cs because you do this save to db everytime we enter in OnGet() so before the user has really clicked on button "Confirm Order" (else what's the point of this button if the pizza is already save in DB)
Excellent tutorial! You are great teachers! Thank you for making this content free for all to learn and cheers to your journey on growing your RUclips channel ;)
Great tutorial ! very well explained and easy to follow :) Thank you
Seems like Object explorer is not an option when you click on View in order to get the connection string ( for MAC users ) for min 3:05:31
Thank for helping me! keep this good work
Love the Dark Souls reference. Sif is the best doggo
Thanks for the tutorial. Very informative & well explained.
great video bro. hoping you have a video about authentication and authorization
Thanksssssssssss for this amazing course it has no wrong in it
you should be adding it AFTER you click on Confirm Order. BasePrice should be FinalPrice. the folder for models was originally called "Models" but in SQL portion of the project it is called "Model". the SQL portion is way too fast. recommend anyone watching to make heavy use of pause or slow it down to half speed.
thx for video it helped to start with asp net .
You teached me soo much, thank you!!!
Thanks man love germany
This video helped me out so much, I have been developing int 4.5 framework for a while now, trying to upgrade my skills. This really helped me. I am thinking about signing up for your course. You video mentions Blazor server and MVC but I don't see these mentioned on the site mention am I missing it?
any idea why around 50:00 mins in his entire form box is more central, while mine is hugging the left of the page? Did i forget to include something?
Thanks!
Very great course. Thank you so much!
Very cool and informative video!!! Can't wait for more ^^
Great course! Thank you for sharing.
Super awesome 👌🏼..thanks for dotnet program tuts!
Can someone tell me why we need to type /helloworld in address bar and not /helloworldcontroller as its written in document? 23:50
Incredible tutorial. Thank you.
what font are u using?
any ideas why manual created classes as mainText and etc. don't work. In general whatever I created in site.css seems not to be working.
Thank you sir !
You are welcome! :-)
Good Tutorial . Pls give link for publishing and deploying
Nice Video. Thank you for creating this. This is helpful and awesome. Btw, where can i have the source code ?
@1:26:17 the code itself is not fine. It should be asp-page="/Checkout/Checkout"
many thanks for your awesome work.
Very good efforts...make more videos
EXCELENT COURSE !!
It says ASP NET 6.0, not web design course. And what about async or repository pattern for example, DI? Is this superbeginner category?
Excellent, but I have a little problem with paquetNuGet I can't instalate
Thank you so much sir
Dennis Panjuta, I know this name from Udemy and Unity courses. Great! At 0:12 I knew, it's going to be good!
thanks from taiwan.
How to publish this website on Azure with the database? I published it, but the database (order page) shows an error.
Your IF condition for checkbox is not working..plz check it
Great free content!!
yes! Make sure to subscribe :)
Cheers.
Thank you your tutorials is useful
Great video thanks for the skill sharing.
thanks for sharing your knowledge, new sub, =)
Glad you like it!
thanks sir i think you were created to teach something
#respect
hello in course what you sell in academy possible pay with crypto?
Thanks for video
Nice one 🔥🔥🔥
Thanks for the video! I just wish you hadn't used Bootstrap and created in CSS yourself.
Great content
Thank you Nelson!
@@tutorialsEU keep doing what you are doing, it is excellent...
i downloaded the video :)
AWESOME!😊
Nice man ty
This course is AWESOME!!!
Thank you so much.
No problem!
Thanks for this video. Can you share github repo of this project?
Nice snake oil tactics here at 1:26:37
No, "we" are not in the 'Thank You' page right now and the reason it doesn't work is because you didn't set the links properly.
1:26:44 No. The flow does not work flawlessly. That's what you just demonstrated.
*For students:*
asp-page="/CheckOut/ThankYou"
First slash indicates the parent folder (= folder "Pages") of the rest of your Razorpage folders.
So if you begin with that, you can always navigate yourself to the right folder and finally the page. Another example:
asp-page="/Pizza"
First slash is the parent (folder "Pages") and then you end up on the page already.
So, simply always start with denoting the parent folder with...
asp-page="/"
... and from there just go.
very good pizza C#
I check your website and I would like to apply. Do you guys provide certification? like cert of completion or something?
Hello, maybe someone knows why I'm getting the name "custom" when I choose from the given pizzas and when I create pizza and put the name, I get the pizza name correct
you must change code in Pizza.cshtml on foreach loop image ancor :
Get This Pizza
@@gugelashaa Thank you its working!!
very helpful
thanksssssss
Excellent
Tks very well done
my data save in database even before i press confirm order button what is the reason kindly inform me please.
Please do asp .net core with angular using bootstrap and ajax
Sounds amazing! We put that on our list
Hey great course! My question is how can i add more than one table in the database
You add a dbset to your application db context
so basicly .net 6 is .net core as well?
I am using Manjaro Linux, so how would I go about that?
I just stuck in creating a form side and i can't get any submit form. And i look, so i didn't put submit button inside of form :D
Is this video a subset of the one on udemy?
it looks good
Do you teach MS SQL in your courses?
What about async streaming?
Why do the class in website tell 29.95$ for 4 days but when you click it change to 97$ ?