Master SQL to Excel Data Export: Entity Framework & ClosedXML | ASP.NET Blazor Tutorial

Поделиться
HTML-код
  • Опубликовано: 17 янв 2025

Комментарии • 8

  • @attilaguba856
    @attilaguba856 2 месяца назад

    it's really good stuff! Subscribed! Great explanation!

  • @rickfonner
    @rickfonner 2 месяца назад

    Nick, thank you very much!
    I have successfully implemented this solution onto my page.
    You presented this as a simple step-by-step development effort
    that allowed me to watch, listen, and learn.

  • @pezduni
    @pezduni 5 месяцев назад

    Thanks for great video !

  • @richardshi1896
    @richardshi1896 11 месяцев назад +1

    Really nice. Do you also have a video tutorial on importing Excel data in Blazor using ClosedXML?

  • @MrESkipperMain
    @MrESkipperMain 11 месяцев назад

    Awesome thanks really wanted to do this from the razor page and not use MVC controllers like epplus and radzen were tryina tell me. Thanks!

  • @garciablancocesar
    @garciablancocesar Год назад +1

    Hi nick!
    Need your help!!
    How can I generate this JSON as an input in C#
    {
    "defects":
    [
    {
    "defectName": "value",
    "defectCRD":"value2"
    }
    ]
    }
    Appreciate your help Nick!

    • @nickproudprogrammer
      @nickproudprogrammer  Год назад

      You want to create this JSON using C#? You could use NewtonSoft or some other library. I like to use JObjects/JArrays. So for this you could create a JObject and then add a property of type JArray called 'defects.' Then you can add defect objects to it. Let me know if you need to chat through more