internal static void AbortTransactions(params DbConnection[] ConnectionArray) { foreach (var Con in ConnectionArray) { Con.AbortTransaction(); } }