After a month we finally got to hear the results and at what place we finished in the Rad Race Alex Thissen and I competed in. I spoke about the Rad Race earlier right here and what my experience was. I had no idea what place we would end, and I'm very pleased to see us finish at 4th place!
Unfortunatly I could not attend the 'ceremony', because I had to give a training this week. But here's the info from Alex his blog:
Congrats to the CrossmarX team. We hope to see you again next year, because we're really counting on being there again. What's trange is that the Magic Hands team didn't do so well this year, while they were last year's winners.
By the way, I was just reading about the VB.NET team (Dutch) of previous year, where they wrote that the frameworks are more important then Visual Studio and .NET itself. I hope we proved them wrong, because we 'only' used LLBLGen Pro and nothing else but Visual Studio 2005 and SQL-Server. We were totally prepared for WinForms, but not for WebForms, so we had to switch the first hour of the event and create everything from scratch, like login, registering, masterpages, user-interface, etc.
private static void InsertUser(string loginName, string password, SqlConnection conn)
{
SqlCommand cmd = new SqlCommand("Insert into Users (LoginName, Password) Values (@LoginName, @Password)", conn);
cmd.Parameters.AddWithValue("@LoginName", loginName);
cmd.Parameters.AddWithValue("@Password", password);
conn.Open();
cmd.ExecuteScalar();
}
public static void ExecuteTest()
using (TransactionScope scope = new TransactionScope())
// Open first connection
using (SqlConnection conn1 = new SqlConnection(ConnectionString))
InsertUser("dennis", "pa$$word", conn1);
Console.WriteLine("DistributedID : {0}", System.Transactions.Transaction.Current.TransactionInformation.DistributedIdentifier);
// Open second connection
using (SqlConnection conn2 = new SqlConnection(ConnectionString))
InsertUser("anko", "pa$$word", conn2);
Console.Write("Press enter...");
Console.ReadLine();
Just got the word from Marc, that Team Foundation Server will ship today, according to this article on ActiveWin. Rob Caron also mentioned it.
Too bad it can't be downloaded from MSDN, we'll have to find another way to play around with it in our Lab.