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

DeleteDbAsync() private method

private DeleteDbAsync ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
		public async Task DeleteDbAsync()
		{
			var all = Utils.LoadTextResource(string.Format("AsyncPoco.Tests.{0}_done.sql", _connectionStringName));
			foreach (var sql in all.Split(';').Select(s => s.Trim()).Where(s => s.Length > 0))
				await db.ExecuteAsync(sql);
		}