最後の配列を取得する必要がある複数の配列を含む Json 応答があります。ExpenseDescriptions を選択し、これだけを Linq を使用して ajax 呼び出しに返したいと考えています。ExpenseDescription は、常に返される最後の配列です。私の応答の構造は次のとおりです。
{
"Data": {
"Items": [
{
"Result": {
"Id": "Some Data"
}
},
{
"Result": {
"Id": "Some More Data"
}
},
{
"Result": {
"ExpenseDescriptions": [
{
"Code": "TRH8",
"Description": "Some Description",
"UnitCost": 0,
"MaxThreshold": 0,
"MinThreshold": 0
},
{
"Code": "VVFT3",
"Description": "Some Description",
"UnitCost": 0,
"MaxThreshold": 0,
"MinThreshold": 0
}
]
}
}
]
}
}
linq を使用していくつかの基本的な句を実行できますが、上記を実行できる方法を見つけたり見つけたりすることはできません。Linq でこれを行う際の助けをいただければ幸いです。