当前位置: 首页>>代码示例>>C#>>正文


C# SitecoreService.Delete方法代码示例

本文整理汇总了C#中SitecoreService.Delete方法的典型用法代码示例。如果您正苦于以下问题:C# SitecoreService.Delete方法的具体用法?C# SitecoreService.Delete怎么用?C# SitecoreService.Delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在SitecoreService的用法示例。


在下文中一共展示了SitecoreService.Delete方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Delete_RemovesItemFromDatabase

        public void Delete_RemovesItemFromDatabase()
        {
            //Assign
            string parentPath = "/sitecore/content/Tests/SitecoreService/Delete";
            string childPath = "/sitecore/content/Tests/SitecoreService/Delete/Target";

            var db = Sitecore.Configuration.Factory.GetDatabase("master");
            var context = Context.Create(Utilities.CreateStandardResolver());
            context.Load(new SitecoreAttributeConfigurationLoader("Glass.Mapper.Sc.Integration"));
            var service = new SitecoreService(db);

            var parent = db.GetItem(parentPath);

            //clean up any outstanding items
            Item child;
            using (new SecurityDisabler())
            {
                parent.DeleteChildren();


                child = parent.Add("Target", new TemplateID(new ID(StubClass.TemplateId)));
            }
            Assert.IsNotNull(child);

            var childClass = service.GetItem<StubClass>(childPath);
            Assert.IsNotNull(childClass);

            //Act
            using (new SecurityDisabler())
            {
              service.Delete(childClass);
            }

            //Assert
            var newItem = db.GetItem(childPath);

            Assert.IsNull(newItem);
           
        }
开发者ID:uv20,项目名称:Glass.Mapper,代码行数:39,代码来源:SitecoreServiceFixture.cs

示例2: Delete_RemovesItemFromDatabase

        public void Delete_RemovesItemFromDatabase()
        {
            //Assign
            using (Db database = new Db
            {
                new Sitecore.FakeDb.DbItem("Target"),
            })
            {
                var context = Context.Create(Utilities.CreateStandardResolver());
                context.Load(new OnDemandLoader<SitecoreTypeConfiguration>(typeof(StubClass)));
                var service = new SitecoreService(database.Database);

                string parentPath = "/sitecore/content/Target";
                string childPath = "/sitecore/content/Target/Child";

                var parent = database.GetItem(parentPath);

                //clean up any outstanding items
                Item child;
                using (new SecurityDisabler())
                {
                    parent.DeleteChildren();


                    child = parent.Add("Child", new TemplateID(new ID(StubClass.TemplateId)));
                }
                Assert.IsNotNull(child);

                var childClass = service.GetItem<StubClass>(childPath);
                Assert.IsNotNull(childClass);

                //Act
                using (new SecurityDisabler())
                {
                    service.Delete(childClass);
                }

                //Assert
                var newItem = database.GetItem(childPath);

                Assert.IsNull(newItem);
            }
        }
开发者ID:mikeedwards83,项目名称:Glass.Mapper,代码行数:43,代码来源:SitecoreServiceFixture.cs


注:本文中的SitecoreService.Delete方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。