摘要:
在李永京NHibernate之旅(5)中,关于更新对象中的一个测试是这样的:[Test]public void UpdateCustomerTest(){ var customer = _crud.GetCustomerById(1); customer.Firstname = "liyongjing"; _crud.UpdateCustomer(customer); var testCustomer = _crud.GetCustomerById(1); Assert.AreEqual("liyongjing", customer.Firstname);}我跟踪了一下SQL语句的执行,发现这 阅读全文