编程浪子的博客

碌碌无为终为过

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2010年9月16日

摘要: 在李永京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语句的执行,发现这 阅读全文
posted @ 2010-09-16 19:36 编程浪子_ 阅读(1314) 评论(0) 推荐(0) 编辑