private QueryPerformanceResult<Item> RunWhereTestForNotIndexedByGuid(Collection<Item> CollectionItem, Int32 Id)
 {
     return (
             from item in CollectionItem
             where item.Id == Id.MakeGuid()
             select item
     ).ExecuteQueryPerformanceResult();
 }