public void SpatialTypesTest()
        {
            var connection = new SqlServerConnection("Server=127.0.0.1,1401;Database=TestData;User Id=sa;Password=s3cur3*P44sw0rd;", log);
            IEnumerable <SqlServerGeometryTable> data = connection.GetResult <SqlServerGeometryTable>("SELECT * FROM GeometryTestTable");

            Assert.AreEqual(3, data.Count());
        }