Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

get one property from list of objects linq

var result = from x in Contacts
             where x.ContactTypeID == 2 && x.OrganizationName == "COMPANY XYZ"
             select x.ContactID;
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #property #list #objects #linq
ADD COMMENT
Topic
Name
2+1 =