public void ASimpleObjectCanBeRead()
        {
            var ship = new Ship()
            {
                Name = "Andrea Doria"
            };

            using (new SessionScope())
                AR.Create(ship);

            using (new StatelessSessionScope())
            {
                Assert.IsTrue(AR.Find <Ship>(ship.Id) != null);
                Assert.AreEqual("Andrea Doria", AR.Find <Ship>(ship.Id).Name);
            }
        }