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...

ความคิดเห็น • 24

  • @anddav123
    @anddav123 9 วันที่ผ่านมา +1

    Great tutorial, thanks Tim

    • @IAmTimCorey
      @IAmTimCorey  9 วันที่ผ่านมา

      You are welcome.

  • @AmirabbasEsmaeilpour
    @AmirabbasEsmaeilpour 10 วันที่ผ่านมา

    Brilliant and practical.Thank you so much ❤🙏

    • @IAmTimCorey
      @IAmTimCorey  10 วันที่ผ่านมา +1

      You are welcome.

  • @davidkinkaku9943
    @davidkinkaku9943 11 วันที่ผ่านมา

    You are a real one! Thanks for the countless help!

    • @IAmTimCorey
      @IAmTimCorey  10 วันที่ผ่านมา

      You are welcome.

  • @joshbarros1995
    @joshbarros1995 11 วันที่ผ่านมา +6

    I guess its finally time for me to learn C#

    • @IAmTimCorey
      @IAmTimCorey  11 วันที่ผ่านมา

      Sounds good.

  • @SKIDDOW
    @SKIDDOW 9 วันที่ผ่านมา

    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?

    • @tedwagner5018
      @tedwagner5018 9 วันที่ผ่านมา

      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.

    • @IAmTimCorey
      @IAmTimCorey  9 วันที่ผ่านมา +1

      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.

    • @SKIDDOW
      @SKIDDOW 8 วันที่ผ่านมา

      ​@@IAmTimCorey Thank you very much.
      Appreciate for the guidance.

  • @MAHDI-oq9vl
    @MAHDI-oq9vl 11 วันที่ผ่านมา

    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 ?

    • @IAmTimCorey
      @IAmTimCorey  11 วันที่ผ่านมา +1

      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/

  • @homaassal2794
    @homaassal2794 11 วันที่ผ่านมา +2

    Could you do video on whether you think the new AI models will replace the developers or not

    • @IAmTimCorey
      @IAmTimCorey  11 วันที่ผ่านมา +2

      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.

  • @eubiquiteus
    @eubiquiteus 11 วันที่ผ่านมา

    if(!(file is {Length: > 0}))...
    @48:00

    • @IAmTimCorey
      @IAmTimCorey  10 วันที่ผ่านมา

      That was it! Thanks. I totally blanked on that one.