Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

enter image description here

 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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
171 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to use $ as placeholder for the actual array and you need to write the condition as a string.

var adreees = [{ CUSTOMER_ADRESS_ID: 1, CUSTOMER_ID: 17, name: 'foo' }, { CUSTOMER_ADRESS_ID: 2, CUSTOMER_ID: 17, name: 'bar' }, { CUSTOMER_ADRESS_ID: 3, CUSTOMER_ID: 17, name: 'baz' }],
    correspondenceAdress = 2,
    customerCode = 17,
    result = Enumerable.From(adreees)
        .Where("$.CUSTOMER_ADRESS_ID === correspondenceAdress && $.CUSTOMER_ID === customerCode")
        .DefaultIfEmpty(null)
        .First();

console.log(result);
<script src="https://cdnjs.cloudflare.com/ajax/libs/linq.js/2.2.0.2/linq.js"></script>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...