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); }
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); }