public void EnsureWrapped_MultipleCalls(DatabaseType dbType)
        {
            var syntax = new QuerySyntaxHelperFactory().Create(dbType);

            string once  = syntax.EnsureWrapped("ff");
            string twice = syntax.EnsureWrapped(once);

            Assert.AreEqual(once, twice);
        }