0
鑑於以下功能NHibernate測試VerifyTheMappings
[Test]
public void VerifyMappings()
{
new PersistenceSpecification<Address>(Session)
.CheckProperty(x => x.AddressLine1, "190 House 12")
.VerifyTheMappings();
}
下面將試圖做一個讀取和寫入datbase,但它留下的記錄。是否有可能使用流利的框架刪除此記錄?