views:

9

answers:

0

Given the following

    [Test]
    public void VerifyMappings()
    {
        new PersistenceSpecification<Address>(Session)
            .CheckProperty(x => x.AddressLine1, "190 House 12")
            .VerifyTheMappings();
    }

The following will attempt to do a read and write to the datbase, however it leaves the record, is it possible to delete this record using the fluent framework.

related questions