Exemple #1
0
 private bool RelationshipExists(long id)
 {
     using (StorageRelationshipScanCursor relationship = StorageReader.allocateRelationshipScanCursor())
     {
         relationship.Single(id);
         return(relationship.Next());
     }
 }