Julio you are a great teacher!! I have reached up to 90min in this video which is the first of your series for me and I really enjoy learning from you!! You are a star my friend!! Keep on teaching us!!! Thanx a million for your video!!
@@doctorlee3976 isso não é uma questão de sermos limitados, é questão de alcance. Pelo accent do Júlio, nota-se que ele não é nativo inglês, ou seja, está fazendo em inglês pelo alcance. A língua global utilizada na programação sempre foi o inglês, não só a língua mais falada entre os devs como também na própria programação em si.
The are so many useless tutorials on youtube but Julio is the goat, very useful and informative especially when you really wanna learn how things are connected on the backend.
Cant even explain how great the lessons are. You actually go into detail on how things are connected, setup, and most importantly what they mean. I have seen too many videos where they say, "add this" and I have to pause the video and watch another or find out on my own what something is doing which throws me off my process and flow. Just got to the point in the frontend tutorial where you sent us here and am soo excited to get more knowledge on building my own rest API as a few companies I have talked to asked me if I have built my own before.
An excellent assessment. Yes, "do this", "do that" and I am **completely** thrown off, as i must pause my forward progress and find out what the heck is wanted/needed. thank you for this comment. ....oh, I am an experienced IT professional, but, we are always learning, right?
Haha same, I applied for an asp.net dev job and couldnt answer any backend questions but answers all C# questions bcs of game dev correctly and they hired me and told me to learn asp.net asap.
Julio, your courses are phenomenal, you explain the best practices and concepts in such a simple manner that listening to your videos is almost addictive. I couldn't find anyone else quite like you, doesn't matter what language they use. I'm learning so much about professional software development in general, while at the same time exploring C# which is new to me. I will highly recommend all your free and paid content to anyone interested in C#
This is an amazing course for beginners and experienced folks alike. I learned so much from this, can't wait to start the frontend part next. Thanks Julio!
Thanks a lot, Julio, this tutorial has really helped me to understand ASP.NET core, minimal API, please, don’t stop marking such videos series, its really beneficial for professional like me who are using .NET and .NET framework. Thanks a ton, will be looking forward for more videos series :)
Just 27:41 in the tutorial I already love this! Author shows how to create project in VS code, how to build and run in terminal not just using UI. Not to mention the teaching style! Thanks for the great content. Looking forward for more advanced stuff. 🔥🔥🔥
Wao julio mi Ñaño, que increíble video, primera vez que hago un trabajo en c# y me quedó clarísimo todo, gracias a ti eh conseguido un trabajo que requiere conocimiento en c#, 100% voy a seguir estudiando contigo, saludos desde Texas y machala, Ecuador 🎉
Outstanding content Julio. Very few online courses teach minimal apis from scratch. Most of them still teach Controller based apis with sqlserver. The best part about this tutorial was the use sqlite which is hassle free especially for non windows users who don't have MS Sql server readily available. Thanks.
I have a question iam at time (2:12:00) and when i right click on the GameStore.db nothing shows to open with and when i click on the file its like empty nothing to show
Better to start from 'minimal' than from the 'convoluted' dotNet Core Web API. Other tutorial are overwhelming because the use the more advanced convoluted version of dotNet Core from start. Great job man! From the Philippines.
Absolutely fantastic course, the way you paced the course, creating the need, solving the problem, refactoring, improving, so there were no lose ends and we get a solid foundation, from the ground up, congratulations and keep up the good work
Julio thanks for this video! I found it really practical and hands on. I have been following you and doing this demo on my local. I learned many concepts from this content. Best regards from Perú 🇵🇪
for those needing a list of games, here you go: var games = new List { new GameDto(1, "Civilization VI", "4X", 59.99m, new DateOnly(2016, 10, 21)), new GameDto(2, "Stellaris", "4X", 39.99m, new DateOnly(2016, 5, 9)), new GameDto(3, "Cities: Skylines", "Management", 29.99m, new DateOnly(2015, 3, 10)), new GameDto(4, "Planet Zoo", "Management", 44.99m, new DateOnly(2019, 11, 5)), new GameDto(5, "Endless Legend", "4X", 29.99m, new DateOnly(2014, 9, 18)) };
Thank you for the tutorial. I was following along the Blazor tutorial for Game Store and got to the section about the backend. Seeing how well you explained Blazor and showed amazing examples so far, I wanted to see how you would create the backend. I've created an API before and this tutorial has provided me with good ways to structure an API, how to use Entity Framework, and how to set up a minimal API with refactoring. I have learned that and more so thank you again for the tutorial.
Thanks so much 🙏🙏🙏 This gives un beginners a solid foundation from which we can build. Additionally, the last part which shows the backend API''s integration with the front-end beautifully ties everything together.
Thank you so much for sharing this detailed course for free. Really amazing and easy to follow and gives me a lot of understanding in these quite new stoff. I'm trying a lot of new technics just to keep in shape programatically as a retired programmer. I will definitely follow your videos futureways! Thanks again!! 🙂
Great instructor ever! Though it makes me difficult to understand your words sometimes because of your speaking speed, it cannot be ignored that the content you released is really complete . I wish you can give more videos for intermediate and advanced learners. Thank you!
Thank you very much, sir. Your video really helped me understand the topic. I had watched another tutorial before and felt like I couldn't grasp it, but your teaching made it seem so much easier. Keep up the great work!😇
many thanks Julio for sharing your knowledge. Indead one of the best courses I've seen aroud. It was really helpfull for me to jump start in ASP.NET. 👏👏
2:05:55 I had to output in "Data/Migrations" instead of "Data\Migrations" as shown in the tutorial, because it created a folder outside of the "Data" folder. 2:12:06 I was unable to open the GameStore.db file with the SQLite extension. I then reinstalled the extension, however it errored out saying - 1. "SQLite process failed to start: The argument 'file' cannot be empty. Received" and 2. "Unable to find a valid SQLite command, Fallback binary is not valid." Then I had to search the internet and was able to solve it. I had to install sqlite in my system. I was using Debain so I had to do `sudo apt install sqlite3` and restarted VSCode.
Great tutorial. Just one thing if you are using any visual studio edition other than code you have to install SQLite and SQL Server Compact Toolbox as an extension
thanks so much for the tutorial. but there's a question i wanted to ask, why are the properties of the request body turned pascal case when you accessed them in the route handler functions eventhough they were in camel case originally?
Hi! I have a problem on 38:42 minutes of this video. My computer (Windows 10) show me this message "You don't have an extension for debugging HTTP. Should we find a HTTP extension in the Marketplace?". I don't understand why. I follow every step of this fantastic video.
Hi Julio, 2:05:52 when I run the dotnet ef migrations command I get this error- "Unable to create a 'DbContext' of type ''. The exception 'Unable to resolve service for type 'Microsoft.EntityFrameworkCore.DbContextOptions`1[Gamestore.Api.Data.GameStoreContext]' while attempting to activate 'Gamestore.Api.Data.GameStoreContext'.' was thrown while attempting to create an instance." Could you help me to fix this? Thanks in advance!
Great Video. How can I transform this folder structure into an MVC one? so for example instead of having an endpoints folder I would have a Controllers folder that had GamesController.cs and Genres Controller.cs. Each file inside the controller folder would handle its respective logic. I am only asking because this is a structure i see is used commonly.
Incredible course Julio, it's helping me a lot. I'm taking the course again along with the frontend, trying to change some things, my question is how difficult would it be to add an extra field that was an image? For example, the last field is the Release Date, but what if there was one more field where the user could upload an image? How would I do this? I would have to add a new field in Dto and work on it, and is there a type (like int, string, etc.) for images? Or would it be much more complex? Sorry for the amount of questions, I was looking for ideas to personalize the project and these questions came to me. Thanks.
The frontend code tree doesn't match that of the frontend (which the course named GameStore.Client) in the video tutorial and I don't appear to have an appsettings.json file? Am I missing a step? Great course, by the way.
I did them both in visual studio and used an external SQL db. I will try and build them again as a single 2024 blazer app. Thanks again, you are a great tutor and very generous with your content.
How did you get your icons in the explorer to show the way they do? Like your .http files show as the red web globe, your .sln and .csproj files show as the Visual studio logo. Is that an extension? I like the look of it
@@juliocasal I'm sorry about the questions(I'm a complete beginner), but I saw that I had to do the previous tutorials(the Aspire ones) in order to proceed to your suggested video, but the database you used in this one was SQLite, and the database you used in the previous GameStore was a different one. Thus, leading to me getting stuck at that step in the 8-12 min mark. How should I proceed?
hello, thank you for the free courses im new to netcore currently learning from the scratch. although im not comfortable using entity framework, do you have any resources or tutorial on how to connect to sql server without using entity framework? maintaining stored procedure much more comfortable for me than to modify entity framework code.
hello, thanks for the great Course, im having a problem when add a new game the relaseDate column always get saved as "0001-01-01", I tried to get some solutions with ChaGPT but nothing seemed to solve the issue, im on EF Core version 9 preview and sqlite 9 preview , I tried to change the data type to DATETIME and it seems not working either also I tried to map the type convertion on the OnModelCreating Methode and didnt work also, is this some with EF Core compatibility with sqlite or I am doing something wrong thank you again
Hello Julio, I really appreciate your excellent job. I wonder if you can tell us the tool you used to draw the arrow and frame on the screen when you wanted to highlight something? Thanks.
Julio you are a great teacher!! I have reached up to 90min in this video which is the first of your series for me and I really enjoy learning from you!! You are a star my friend!! Keep on teaching us!!! Thanx a million for your video!!
You're very welcome!
This course is better than 2 or 3 paid ones I have done, again thanks Julio for sharing this with the community. Hugs from Brazil.
Thank you, I'm glad you think so!
Estou abismado na vasta imensidão de conhecimento em programação que tem em inglês , em Português somos muitos limitados
@@doctorlee3976 isso não é uma questão de sermos limitados, é questão de alcance. Pelo accent do Júlio, nota-se que ele não é nativo inglês, ou seja, está fazendo em inglês pelo alcance. A língua global utilizada na programação sempre foi o inglês, não só a língua mais falada entre os devs como também na própria programação em si.
bro how can you do 3 paid courses and still look for tutorials are u dumb?
The are so many useless tutorials on youtube but Julio is the goat, very useful and informative especially when you really wanna learn how things are connected on the backend.
Glad you think so!
Cant even explain how great the lessons are. You actually go into detail on how things are connected, setup, and most importantly what they mean. I have seen too many videos where they say, "add this" and I have to pause the video and watch another or find out on my own what something is doing which throws me off my process and flow. Just got to the point in the frontend tutorial where you sent us here and am soo excited to get more knowledge on building my own rest API as a few companies I have talked to asked me if I have built my own before.
I hope it helps!
An excellent assessment. Yes, "do this", "do that" and I am **completely** thrown off, as i must pause my forward progress and find out what the heck is wanted/needed. thank you for this comment. ....oh, I am an experienced IT professional, but, we are always learning, right?
I switched from game development to backend with C#. This course provided the technical knowledge i was looking for. Thank you very much.
Welcome!
May I ask why you switched? I am trying to do game development...just curious
Haha same, I applied for an asp.net dev job and couldnt answer any backend questions but answers all C# questions bcs of game dev correctly and they hired me and told me to learn asp.net asap.
Can you share some info about how to get into game devt. I started c# after nodejs. Can you please show me some roadmaps
Julio, your courses are phenomenal, you explain the best practices and concepts in such a simple manner that listening to your videos is almost addictive. I couldn't find anyone else quite like you, doesn't matter what language they use. I'm learning so much about professional software development in general, while at the same time exploring C# which is new to me. I will highly recommend all your free and paid content to anyone interested in C#
Wow, thank you for the kind words!
This is an amazing course for beginners and experienced folks alike. I learned so much from this, can't wait to start the frontend part next. Thanks Julio!
Great to hear!
Thanks a lot, Julio, this tutorial has really helped me to understand ASP.NET core, minimal API, please, don’t stop marking such videos series, its really beneficial for professional like me who are using .NET and .NET framework. Thanks a ton, will be looking forward for more videos series :)
Glad it helps!
Just 27:41 in the tutorial I already love this! Author shows how to create project in VS code, how to build and run in terminal not just using UI. Not to mention the teaching style! Thanks for the great content. Looking forward for more advanced stuff. 🔥🔥🔥
Wow, thank you!
One of the best courses I´ve taken. Explained many concepts that other courses don´t mind to cover.
Thank you!
Wao julio mi Ñaño, que increíble video, primera vez que hago un trabajo en c# y me quedó clarísimo todo, gracias a ti eh conseguido un trabajo que requiere conocimiento en c#, 100% voy a seguir estudiando contigo, saludos desde Texas y machala, Ecuador 🎉
De nada, me alegra te haya ayudado!
Outstanding content Julio. Very few online courses teach minimal apis from scratch. Most of them still teach Controller based apis with sqlserver.
The best part about this tutorial was the use sqlite which is hassle free especially for non windows users who don't have MS Sql server readily available.
Thanks.
I'm glad you liked it!
Best .NET course on UA-cam
Thank you!
Thank you so much for this quality content for free.
This is the best .NET course I found.
You are a great teacher.
Wow, thank you!
Extremely beginner friendly course. Well explained. Thank you very much.
You're very welcome!
so far i finished 30 mins from your course and your explanation is just amazing thank you
You're very welcome!
I have a question iam at time (2:12:00) and when i right click on the GameStore.db nothing shows to open with and when i click on the file its like empty nothing to show
Have just concluded the course, 5 stars!!
The best .Net beginner course out there. Thankyou Julio
Thank you!
The best tutorial, I was searching for beginner friendly and yours is the best compared to others.
I'm glad!
Better to start from 'minimal' than from the 'convoluted' dotNet Core Web API. Other tutorial are overwhelming because the use the more advanced convoluted version of dotNet Core from start. Great job man! From the Philippines.
Best .NET course on UA-cam!!!
Absolutely fantastic course, the way you paced the course, creating the need, solving the problem, refactoring, improving, so there were no lose ends and we get a solid foundation, from the ground up, congratulations and keep up the good work
Thanks!
Julio thanks for this video! I found it really practical and hands on. I have been following you and doing this demo on my local. I learned many concepts from this content. Best regards from Perú 🇵🇪
Glad it was helpful!
Great refresh for me, and for my students, thanks for sharing your experience and knowledge.
for those needing a list of games, here you go:
var games = new List {
new GameDto(1, "Civilization VI", "4X", 59.99m, new DateOnly(2016, 10, 21)),
new GameDto(2, "Stellaris", "4X", 39.99m, new DateOnly(2016, 5, 9)),
new GameDto(3, "Cities: Skylines", "Management", 29.99m, new DateOnly(2015, 3, 10)),
new GameDto(4, "Planet Zoo", "Management", 44.99m, new DateOnly(2019, 11, 5)),
new GameDto(5, "Endless Legend", "4X", 29.99m, new DateOnly(2014, 9, 18))
};
Great!
Thank you for the tutorial. I was following along the Blazor tutorial for Game Store and got to the section about the backend. Seeing how well you explained Blazor and showed amazing examples so far, I wanted to see how you would create the backend. I've created an API before and this tutorial has provided me with good ways to structure an API, how to use Entity Framework, and how to set up a minimal API with refactoring. I have learned that and more so thank you again for the tutorial.
Glad I could help!
Here is my learning process Day 1 27:34 day 2 1:26:30 day 3 1:54:19
Go, go!
Thanks so much 🙏🙏🙏
This gives un beginners a solid foundation from which we can build. Additionally, the last part which shows the backend API''s integration with the front-end beautifully ties everything together.
Glad it was helpful!
Thanks a million, literally!!! Wish you all the best. Much Love and support from Iraq.
Welcome!
Awesome tutorial, greate work Julio. Looking forward for your frontend project in C#. Thank you.
Frontend coming soon!
This is the best course I have taken ever thanks and keep up the good work!!
Thanks, will do!
Thank you so much, that was very helpful for me as a frontend dev
Great!
Thank you so much for sharing this detailed course for free. Really amazing and easy to follow and gives me a lot of understanding in these quite new stoff. I'm trying a lot of new technics just to keep in shape programatically as a retired programmer. I will definitely follow your videos futureways! Thanks again!! 🙂
You're very welcome!
Thank you very much for the content. It is not only of high quality, but also educational and very well organized. Congratulations!!
Thank you!
Great instructor ever! Though it makes me difficult to understand your words sometimes because of your speaking speed, it cannot be ignored that the content you released is really complete . I wish you can give more videos for intermediate and advanced learners. Thank you!
Glad you enjoyed it!
Wow.... great. With many thanks!!👌
Thank you too!
Amazing course! Very informative and great explanation that focuses on the how as well as the why. Thanks a lot for all the effort made on this.
Glad you enjoyed it!
A simple and clear course for beginners. Thanks !!!😜😜😜
Welcome!
Thank you very much, sir. Your video really helped me understand the topic. I had watched another tutorial before and felt like I couldn't grasp it, but your teaching made it seem so much easier. Keep up the great work!😇
Amazing course extremely useful for newbies like me in .Net bunch of hugs Julio we really appreciate your effort
You're very welcome!
Amazing guide and good for refreshing knowledge.
Glad you liked it
This course is amazing! Extremely useful! Thank you 😊
Glad it was helpful!
Tutorial Completed, Thank you so much Julio, really enjoyable tutorial!
I’m glad you liked it!
THIS WAS AWESOME!!. THE PROGRESSION WAS MOST HELPFUL
I'm glad!
Thanks so much Julio, I have learnt a lot from this video, now proceeding to the front end video.
what an amazing tutorial!! Full of information and knowledge Julio..
Glad you liked it!
Excellent course !! this is really good quality content, i love the way you explain everything THANK YOU !
You're very welcome!
This vid help me alot to build my foundation.Thánks you so much
You're welcome!
Thank You Julio for the content. Hugs from Brazil.
this is superb!, thank you for your knowledge
My pleasure!
Amazing Tutorial. Everything was well explained.
Thanks for the feedback!
Thank you so much Julio!! Just received a take-home assessment and this video helps me a ton!!
Great to know!
Absolutely amazing tutorial
Thank you!
many thanks Julio for sharing your knowledge. Indead one of the best courses I've seen aroud. It was really helpfull for me to jump start in ASP.NET. 👏👏
Great to hear!
Thanks for this amazing tutorial! good vibes!
You're welcome!
Absolutely beautiful tutorial. Thank you!
Glad you enjoyed it!
Absolutely nice tutorial. Thank you so much for sharing!
You are so welcome!
many many thanks from India, waiting for the latest video on microservices too
More to come!
Great course! Thanks you so much Julio.
Glad you like it!
Excellent ! Not too easy and not too much. Thank a lot.
Glad you liked it!
2:05:55 I had to output in "Data/Migrations" instead of "Data\Migrations" as shown in the tutorial, because it created a folder outside of the "Data" folder.
2:12:06 I was unable to open the GameStore.db file with the SQLite extension. I then reinstalled the extension, however it errored out saying - 1. "SQLite process failed to start: The argument 'file' cannot be empty. Received" and 2. "Unable to find a valid SQLite command, Fallback binary is not valid." Then I had to search the internet and was able to solve it. I had to install sqlite in my system. I was using Debain so I had to do `sudo apt install sqlite3` and restarted VSCode.
I'm glad you figured it out!
Thank you for the course it really helps understanding the fundamentals of .net. God bless you brother
You are very welcome
Great course! Would love to get into unit testing and deploying to the cloud.
Thanks, here:
ua-cam.com/video/MpeMJ0XqgYg/v-deo.html
ua-cam.com/video/XtWubiUzz-k/v-deo.html
Lets go! Thank you Julio!
Thanks for share!!!! All the best
Welcome!
Thank You Julio you simplified alot of things, appreciate your effort.
Glad it was helpful!
Hello from russia, I have an HTTP/1.1 500 Internal Server Error, the code is the same as on 1:00:13 please tell me what am I doing wrong?
I solved the problem , it turned out to be my carelessness. Instead of MapPost, I wrote MapGet
Thank you so much!!! ❤
You're so welcome!
Great tutorial. Just one thing if you are using any visual studio edition other than code you have to install SQLite and SQL Server Compact Toolbox as an extension
thanks so much for the tutorial. but there's a question i wanted to ask, why are the properties of the request body turned pascal case when you accessed them in the route handler functions eventhough they were in camel case originally?
ASP.NET Core default serialization logic takes care of that.
@@juliocasalso what if the raw data are in any other cases such as snakecase?
Great video. Keep up the good work. Dotnet watch is our friend :)
Thank you!
Incredible resource! Thanks
My pleasure!
Hi! I have a problem on 38:42 minutes of this video. My computer (Windows 10) show me this message "You don't have an extension for debugging HTTP. Should we find a HTTP extension in the Marketplace?". I don't understand why. I follow every step of this fantastic video.
Switch from your .http file and into a C# file, or just close all files. Then hit F5.
@@juliocasal it works! 🥰 Thank you!
Absolutely loved the video ❤❤❤. Thank you for the video ❤
Glad you enjoyed it!
Can you please provide a video on authentication too ...single sign on
I'll cover that here: juliocasal.com/courses/dotnetbootcamp
Thanks sir its the best tutorials❤❤
Glad you liked it!
Exellent tutorial for minimal apis. Is there a tutorial for controllers as well?
A bit old, but here: ua-cam.com/video/bgk8N_rx1F4/v-deo.html
Hi Julio, 2:05:52 when I run the dotnet ef migrations command I get this error- "Unable to create a 'DbContext' of type ''. The exception 'Unable to resolve service for type 'Microsoft.EntityFrameworkCore.DbContextOptions`1[Gamestore.Api.Data.GameStoreContext]' while attempting to activate 'Gamestore.Api.Data.GameStoreContext'.' was thrown while attempting to create an instance." Could you help me to fix this? Thanks in advance!
Check your connection string and make sure your app is reading it properly.
@@juliocasal Thank you that worked. I was calling builder.Services.AddSqlite(connString) after builder.Build() which was causing this.
Thank you for the course Julio. Could you add timestamps for comfortability?
Welcome! UA-cam should add automatic chapters soon.
@@juliocasal 🙌👏
Thank you sir! This was great!!!
Very welcome!
Really good! I divorced my Udemy course for this one 😅
No way!
2:12:07 i could not find the open database option when right click on that file, the reality is I already installed the extension, how to fix that ?
Odd, it should just work.
@@juliocasal oh it turns out I had the wrong explorer, I right clicked on the solution explorer not the main explorer, so the option didn't appear
This is legit gold!
This is excellent and very good fun
Thanks, glad you think so!
Great Video. How can I transform this folder structure into an MVC one? so for example instead of having an endpoints folder I would have a Controllers folder that had GamesController.cs and Genres Controller.cs. Each file inside the controller folder would handle its respective logic. I am only asking because this is a structure i see is used commonly.
Yes, you can have controllers, but those are no longer used in most new projects.
Great tutorial!
Thank you!
Incredible course Julio, it's helping me a lot. I'm taking the course again along with the frontend, trying to change some things, my question is how difficult would it be to add an extra field that was an image? For example, the last field is the Release Date, but what if there was one more field where the user could upload an image? How would I do this? I would have to add a new field in Dto and work on it, and is there a type (like int, string, etc.) for images? Or would it be much more complex?
Sorry for the amount of questions, I was looking for ideas to personalize the project and these questions came to me. Thanks.
Thank you! I'll be covering the image upload part in my upcoming bootcamp. Waitlist here: go.dotnetacademy.io/bootcamp-waitlist
l'm learning a lot, thanks .
Glad to hear that!
Do i need prior knowledge of c# ?
I've never coded on C# but have good grasp on Python, Javascript.
Yes, you should know the basics of C#.
3:01:22 btw you could've renamed using F2
And thanks for the course
The frontend code tree doesn't match that of the frontend (which the course named GameStore.Client) in the video tutorial and I don't appear to have an appsettings.json file? Am I missing a step? Great course, by the way.
Yes, that Blazor tutorial is older. New one, that matches this tutorial, will go out soon.
I did them both in visual studio and used an external SQL db. I will try and build them again as a single 2024 blazer app. Thanks again, you are a great tutor and very generous with your content.
Thank you so much for the tutorial
You’re welcome 😊
How did you get your icons in the explorer to show the way they do? Like your .http files show as the red web globe, your .sln and .csproj files show as the Visual studio logo. Is that an extension? I like the look of it
Here: marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme
I think it will be better to use "rename symbol" to refactor function or class name than change the one by one 3:00:27
Thanks!
How would you go about deploying this to Azure?
Something like this: ua-cam.com/video/XtWubiUzz-k/v-deo.html
@@juliocasal I'm sorry about the questions(I'm a complete beginner), but I saw that I had to do the previous tutorials(the Aspire ones) in order to proceed to your suggested video, but the database you used in this one was SQLite, and the database you used in the previous GameStore was a different one. Thus, leading to me getting stuck at that step in the 8-12 min mark. How should I proceed?
hello, thank you for the free courses im new to netcore currently learning from the scratch. although im not comfortable using entity framework, do you have any resources or tutorial on how to connect to sql server without using entity framework? maintaining stored procedure much more comfortable for me than to modify entity framework code.
Sorry no.
hello, thanks for the great Course, im having a problem when add a new game the relaseDate column always get saved as "0001-01-01", I tried to get some solutions with ChaGPT but nothing seemed to solve the issue, im on EF Core version 9 preview and sqlite 9 preview ,
I tried to change the data type to DATETIME and it seems not working either also I tried to map the type convertion on the OnModelCreating Methode and didnt work also, is this some with EF Core compatibility with sqlite or I am doing something wrong
thank you again
Are you posting the release date with the correct format?
@@juliocasal Yes, I tried to invert the date with month and the same result I get.
Hello Julio, I really appreciate your excellent job. I wonder if you can tell us the tool you used to draw the arrow and frame on the screen when you wanted to highlight something? Thanks.
zoom it
@@juliocasal Thank you.
Amazing tutorial, equivalent to internet gold
Thank you for the kind words!
@@juliocasal it's well deserved
these course is best for me😎