Great video. Straight to the point and complete with good programming style and architecture that makes sense in today's development world. Thank you for not being another single-use video maker that uses obscure architectures and double speak to confuse/impress viewers. This is complete without being full of tangents and irrelevant details. Please keep making these videos.
@joeMsessions2 жыл бұрын
The good and the bad: The Good: I love this guys style, voice, high level of understanding. I've been working in C# for about 3 years, but many of these concepts are new for me. I'm very interested in expanding my Azure skills. I wish it were a little slower and more fully explained, but the high-density is kind nice too. So the Bad: I'm not sure which version of .NetCore he's using, so I've now worked with it thru VS2017 and VS2022, and neither is working. My 2022 solution doesn't have a Startup.cs file. (I'm sure some people know why this is, but not me. :) ) So, I've probably spent 5 hours on this... again, it's a really well done construction, and I see what he did, but I really want to be able to step thru what I have. (sigh)
@feminhodiniz5 жыл бұрын
Please, continue making videos. You really know how to explain e make a great material! Thank you a lot
@DaveCline4 жыл бұрын
Billy, Regarding the deprecation of the libraries you used... It looks like, not only did Microsoft split them into individual pieces (queue, blob, file, common), but then went ahead and deprecated even the ones the just-got-finished-with-splitting. It's not WindowsAzure.Storage. It's not even Micrososft.Azure.Storage.Queue anymore... It's now just Azure.Storage.Queues. As I'm trying to replicate this project in the latest, constantly changing APIs surrounding Azure, what are your recommendations?
@krishnagoute1293 жыл бұрын
Awesome sir... it is really crystal clear ..
@tabareh4 жыл бұрын
thanks for the video, very learning. I was just wondering if it was neccessary to define Send like that. I would expect that Send(T) would suffice and it will get the type from parameter.
@saikumar-vs9vip3 жыл бұрын
Does this playlist has continution
@health40plus4 жыл бұрын
Thanks for this video I learnt best way to to use DI.
@ADSNGreenLife3 жыл бұрын
Hey Billy, great video can we have key vault in between api call ? And can we implement with same thing with Azure service bus topics ? For different topics creations from code ? Can you help us on that ?
@saivaraprasadarao69903 жыл бұрын
Please show how to trigger a Azure Service Bus Topic using Function app
@sairk61744 жыл бұрын
Awesome Vid....Crystal Clear !!
@atifrana96554 жыл бұрын
Where can I can the source code?
@suvrohere5 жыл бұрын
I am getting the error while trying to build the solution Error NETSDK1045 The current .NET SDK does not support targeting .NET Core 2.2. Either target .NET Core 2.1 or lower, or use a version of the .NET SDK that supports .NET Core 2.2. AwesomeShop.WebApp C:\Program Files\dotnet\sdk\2.1.508\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.TargetFrameworkInference.targets 137 Please help!!
@lucamoroni65944 жыл бұрын
Than you so much! I have just saw the part 1 and it was so clean and easy to understand! Even if now there are Azure Function v3 and the WindowsAzure.Storage NuGet package is deprecated for .NET Core 3.1 (see www.nuget.org/packages/Microsoft.Azure.Storage.Queue/), it works without any problems :)
@DavinderSingh-ii7rb5 жыл бұрын
Thanks, Billy! Really a nice video explaining a good approach. Just a quick question, can I use the 'Service Bus Queue' in place of 'Storage Queue' keeping the other approach same as demonstrated in your video. Cheers!
@sairk61744 жыл бұрын
Thanks Bill
@VineetNair984 жыл бұрын
Hi Billy really nice video, thanks. I had a few questions out of curiosity; 1. Why is the DIContainer (function) "public sealed" but the DependencyInjectionRegistry (library) isn't? 2. In your DIContainer, why do you have both static and private constructors? Sorry if these are really noob questions! Cheers, Vineet