예제 #1
0
        public async Task DeleteAll()
        {
            List <World> list = new List <World> {
                new World(),
                new World(),
                new World(),
                new World(),
            };
            await LCObject.SaveAll(list);

            await LCObject.DeleteAll(list);
        }
예제 #2
0
        public async Task DeleteAll()
        {
            List <LCObject> list = new List <LCObject> {
                new LCObject("World"),
                new LCObject("World"),
                new LCObject("World"),
                new LCObject("World")
            };
            await LCObject.SaveAll(list);

            await LCObject.DeleteAll(list);
        }