Hello, I have a WinForm application.
With this application, I insert the incoming orders detail into the MongoDB database.
Some of my data types are Objects and inside the Objects again I have Objects
Example of my Data in Database:
"Products":
{
"Chocolate": { "Bitter": "0"},
"Milk": { "ChocolateMilk": "0"},
"Coffe": {
"ChocolateCoffe": "0",
"VanillaCoffe": "2",
}
}
I have an Object named products. This object has an Object with the item name in it, and the Object with the item name has key values of how many of its models are in it. How can I go about showing these products in the XtraReport v21.2.6?
(Title - Item Name)
And Below is the key and value of this product.
The quantity and key value of the products may be different in each order. and may be different for each product.
What I have tried:
I haven't tried anything yet.. Because I couldn't come up with a solution on how to create this report...