Is it possible to somehow compare a value to a range of value without using for/foreach.
IEnumerable<XElement> results = xdoc.Descendants( "PAGE" ).Where( p => p.Attribute( "id" ).Value == RANGE_OF_ID).Select(result => result);
Is there anyway of doing what I wrote below? RANGE_OF_ID could be a collection.