Update.Async C# (CSharp) Méthode

Async() private méthode

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