This linq below is returning the full Key Value Pair [Key, Object] . Can someone help me with the linq to return the Key Value:
var items = dict[dictItem.Key].Skip(i).Take(25).ToList();
CORRECT OUT PUT BELOW:
"[_ColorBlue]]": [{
"Color": "Blue",
"ColorId": "2",
"ColorItem": "Shirt"
}]
WRONG OUT PUT BELOW:
"[_ColorBlue, System.Collections.Generic.List`1[Pentair.Domain.Client.Helpers.Commands.HistoryItem]]": [{
"Color": "Blue",
"ColorId": "2",
"ColorItem": "Shirt"
}]
Tapan PatelPosted Oct 27, 2017, 5:17 PM
Tapan PatelPosted Oct 31, 2017, 10:17 AM
David SmithPosted Oct 30, 2017, 6:39 PM
David SmithPosted Oct 30, 2017, 4:24 PM
Tapan PatelPosted Oct 30, 2017, 3:10 PM
David SmithPosted Oct 30, 2017, 2:27 PM