“We are gonna go deep in this video” 😂 I swear you are the unintentional funniest person teaching these stuff. Not a single video where I don’t crack a smile LOL
I got asked for VS code .NET constantly. Visual Studio is a huge barrier to entry for people. Also so after learning with VS code they can move onto my VS videos!
Hi Teddy, another great video... very detailed! Is there any benefit to using List over an interface either IEnumerable or IList. I've read that it's always better to use an interface over concrete classes, any thoughts? Thanks again :)
Yeah interface would actually be the optimal choice in this case. You would get benefit that if you ever changed to another collection it would still work. I naturally always want to use List for everything out of habit lol
First off thank you for the series 🙏🏾. I hope 🤞🏾 at some point we get to some auth, since read dotnet 8 updated it. If you can help please tell me what website is that where you have your diagrams?
What is a best way to work with money? I heard so many times in other programming languages that it's important to use int cents, not decimal dollars. What is conventional in c#?
Can someone help me Why I'm having error with this part of the code? [Column(TypeName = "decimal(18,2)")] The type or namespace name "ColumnAttribute" could not be found (are you missing a using directive or an assembly reference?) CS0246
“We are gonna go deep in this video” 😂 I swear you are the unintentional funniest person teaching these stuff. Not a single video where I don’t crack a smile LOL
You make me laugh man, AND learn. Appreciate you!
Awesome teaching. API's where its at. Love all your visuals for explaining things
Great stuff Teddy...I'm happy for this series...your MVC series 2022(RunersClub cleared me on MVC forever 😂)...I will join this series ASAP
Beginning 2024 with all the boost, sup Teddy!
Yoooo wht up my guy
Amazing course. Subscribed!
the white background really rustles my dark-mode jimmies
Jimmies confirmed rustled ✅
well on the way to .net dev , from idn and got bachelor
Awesome teaching!!!
Hey man, happy new year, keep the good work! Maybe i missed that part, but its any reason to use vscode over vs?
I got asked for VS code .NET constantly. Visual Studio is a huge barrier to entry for people. Also so after learning with VS code they can move onto my VS videos!
@@TeddySmithDev would you recommend following along in vscode if your already comfortable in VS or do you think it would be best to follow in VS?
If you’re already comfortable with VS, I’d go VS. the only bad part tho is that VS doesn’t pair well with React. Pure API tho VS is unbeatable.
I really learnt a lot but I have a question:
what extension helps u auto add the required namespace while you type the code?
intellsense
really good stuff
Thanks Pete!
Very good.
Hi Teddy, another great video... very detailed!
Is there any benefit to using List over an interface either IEnumerable or IList. I've read that it's always better to use an interface over concrete classes, any thoughts?
Thanks again :)
Yeah interface would actually be the optimal choice in this case. You would get benefit that if you ever changed to another collection it would still work. I naturally always want to use List for everything out of habit lol
WE NEED TO GO DEEP TEDDY!!! LMAO
First off thank you for the series 🙏🏾. I hope 🤞🏾 at some point we get to some auth, since read dotnet 8 updated it. If you can help please tell me what website is that where you have your diagrams?
Yeah it’s got auth! Also, diagrams are made on Microsoft Whiteboard but there’s no way to share them.
Why are you not using visual studio?
I think VS Code works lighter than VS.
@@gubiarpawhat do you mean by lighter
what's the softwere u are using is when u explaining stuff in the start ?
Thank you!
I want teddy's vs code theme. Any instructions to set up the same including the font colours, etx. basically everything
install extensions "Night Owl Theme" and "Material Icons"
Hey can someone help on why I'm not getting the auto complete suggestions like Empty in my vs code, I have installed C# DevKit
I think you need this IntelliCode for C# Dev Kit
Is this entire playlist a complete roadmap for an actual project?
If you want entire course look for “react .net finance project”. I’d post link but I’m on mobile.
@@TeddySmithDev There are 70 videos in total, right?
@@TeddySmithDev you are supremely intelligent
Pardon Mr. Ted, is there any extentsions in VS Code to support building .NET App?
C# extensions by JosCreativ
What is a best way to work with money? I heard so many times in other programming languages that it's important to use int cents, not decimal dollars. What is conventional in c#?
Decimal. Not using decimal will cause weird rounding issues.
@@TeddySmithDev thank you very much for replying!
3:56 I don't know Teddy, I don't know if there are other parents who are so cruel as to name their child that
🤣
please explain for us identity, authentication and authorization ♥
steve jobs likes WHAT!?!
Hi Teddy, I have a question. Why couldn't we just set those properties as nullable, than make them empty ?
You could do that too. Personal preference.
your stock and comments classes are public, so you wouldn't need the get; set ?
Can someone help me Why I'm having error with this part of the code? [Column(TypeName = "decimal(18,2)")]
The type or namespace name "ColumnAttribute" could not be found (are you missing a using directive or an assembly reference?) CS0246
Try running "dotnet build" in terminal. Sounds like the DLL files are corrupt/messed up.
try to add this: using System.ComponentModel.DataAnnotations.Schema;
how to change:
... ...()
{
}
to
...() {
}
in VSC for c#/all languages?