Delete.Async C# (CSharp) Method

Async() private method

private Async ( ) : Task
return Task
		public Task Async() => DoATestAsync(async () => {
			var thing = new Thing { Value = "Foo" };
			Context.Things.Add(thing);
			await Context.SaveChangesAsync().ConfigureAwait(false);
			ResetFlags(thing);
			Context.Things.Remove(thing);
			await Context.SaveChangesAsync().ConfigureAwait(false);
			DeletedCheckFlags(thing);
		});
#endif