Intro To Azure Storage in C#
ฝัง
- เผยแพร่เมื่อ 6 ก.พ. 2025
- Azure storage is incredibly cheap. For just pennies a month, you can store gigabytes of data in the cloud. In this video, I am going to show you how to set up an Azure Storage account, then how to utilize it in your applications. We will upload and download data securely using C#.
Full Training Courses: IAmTimCorey.com
Source Code: leadmagnets.ap...
DevPass Business Discount: my.visualstudi...
Great tutorial, thanks Tim
You are welcome.
Brilliant and practical.Thank you so much ❤🙏
You are welcome.
You are a real one! Thanks for the countless help!
You are welcome.
I guess its finally time for me to learn C#
Sounds good.
Great video.
But, assume that I need to make an image hosting site.
1. User upload an image (already included in this tuto)
2. Admin give permission to go public (1:00:25 - give permission for each image programmatically.)
3. Embed image url?
How to do that?
You would create a different storage account and make it public. Don't try to mix secure and public, there is no cost diffeence and is more secure.
What I didn't show in this video is capturing the URL in a database. That's what you would do when the user uploaded the video. Once you have it in a database, you can use that URL to build your image tags just like you would any other images. And yes, you would need to make the image container blobs accessible via anonymous access. However, you do that at the container level, not the blob level. So once you set the container as anonymous blob access, all blobs can be viewed. As @tedwagner5018 said, if you wanted to give permission per image, you would use two containers and move the images between containers as they are approved.
@@IAmTimCorey Thank you very much.
Appreciate for the guidance.
Hello Tim, I'm learning much from you Thanks.❤
I have a video suggestions : Heard from other dotnet developers that companies going to integrate ai agents to there applications and that requires fullstack developer and APIs and database knowledge to do so
Like using Blazor which is the next generation of asp net core and maui for cross platform benefits for reducing costs and efficiency
But they say some of the ai api services are expensive so companies might use free spesialized LLMs for there needs
Can you please make content around it like how to add a chat bot to console application for the demonstration using both paid Azure open ai and free LLms SLMs and what is needed to publish this kind of apps
I mean to how do you publish an app with ai agent that is running locally on your machine with a web app ?
Thanks for the suggestion. Please add it to the list on the suggestion site so others can vote on it as well: suggestions.iamtimcorey.com/
Could you do video on whether you think the new AI models will replace the developers or not
I'm planning on doing another soon, but the short answer is no, they will not replace developers. That's because writing code is not what developers get paid to do. Developers get paid to develop logic. We write code to build that logic. That's why low-code/no-code solutions also don't threaten developers.
if(!(file is {Length: > 0}))...
@48:00
That was it! Thanks. I totally blanked on that one.