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.
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!
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
it's really good stuff! Subscribed! Great explanation!
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.
This makes me very happy! Thanks for the kind words
Thanks for great video !
Really nice. Do you also have a video tutorial on importing Excel data in Blazor using ClosedXML?
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!
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!
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