예제 #1
0
        public void DeleteBatchNode2()
        {
            var batch = new BatchStore();
            var node  = Node.CreateNode(batch);

            batch.Delete(node);
            batch.Execute();
        }
예제 #2
0
        public void DeleteNode()
        {
            var node = Node.CreateNode();

            var batch = new BatchStore();

            batch.Delete(node);

            Assert.IsTrue(batch.Execute());

            Node.GetNode(node.Id);
        }
예제 #3
0
        public void DeleteNode()
        {
            var node = Node.CreateNode();

            var batch = new BatchStore();

            batch.Delete(node);

            Assert.IsTrue(batch.Execute());

            Node.GetNode(node.Id);
        }
예제 #4
0
        public void DeleteBatchNode2()
        {
            var batch = new BatchStore();
            var node = Node.CreateNode(batch);

            batch.Delete(node);
            batch.Execute();
        }