AsyncPoco.Tests.Tests.Transaction_nested_ny C# (CSharp) Method

Transaction_nested_ny() private method

private Transaction_nested_ny ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
		public async Task Transaction_nested_ny()
		{
			using (var scope1 = await db.GetTransactionAsync())
			{
				await InsertRecordsAsync(10);

				using (var scope2 = await db.GetTransactionAsync())
				{
					await InsertRecordsAsync(10);
					scope2.Complete();
				}
			}

			Assert.AreEqual(await GetRecordCountAsync(), 0);
		}