Northwind db = new Northwind( Program.ConnectionString );
var customer = db.Customers.Single( c => c.CustomerID == "FRANS" );
customer.ContactName = "Marco Russo";
db.SubmitChanges();
