Holen Sie sich eine Eigenschaft aus der Liste der Objekte linq

var result = from x in Contacts
             where x.ContactTypeID == 2 && x.OrganizationName == "COMPANY XYZ"
             select x.ContactID;
Doubtful Dugong