var adreees = Variables.PolicyCustomerAddresses;
var linq= Enumerable.From(adreees)
.Where(linq.CUSTOMER_ADRESS_ID === correspondenceAdress && linq.CUSTOMER_ID === customerCode)
.DefaultIfEmpty(null)
.First();
adreees is an array and it is include 3 index and I want to get CUSTOMER_ADRESS_ID === correspondenceAdress && linq.CUSTOMER_ID === customerCode
index's values.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…