Variables.PolicyCustomerAddresses
(3) [{…}, {…}, {…}]
0: {ADRES_EK: null, ADRES_ID1: 885843, ADRES_TEXT: "XXXX", MUSTERI_ADRES_ID: "333", …}
1: {ADRES_EK: null, ADRES_ID1: 890997, ADRES_TEXT: "YYYY", MUSTERI_ADRES_ID: "222", …}
2: {ADRES_EK: null, ADRES_ID1: 890902, ADRES_TEXT: "ZZZZ", MUSTERI_ADRES_ID: "111", …}
length: 3
correspondenceAdress == 222
like this and i wanna take line who MUSTERI_ADRES_ID == 222
by linq
var adreeess = Variables.PolicyCustomerAddresses;
var adrx = Enumerable.From(adreeess)
.Where("$.MUSTERI_ADRES_ID === correspondenceAdress ")
.FirstOrDefault(null)
.First();