I build an object in vb.net where I store data from JSON file that I get from a RESTApi. The object is nested and looks like this:
Public Class FullData
Public Property userID As ULong
Public Property data As List(Of String)
End Class
Public Class GeneralInfo
Public Property id As Integer
Public Property name As String
Public Property data As List(Of FullData)
End Class
Now I want to store these data into a sql database and I am not sure what technique is appropriate and easy to implement.
Could someone help me with it?