public void TestSimpleConvertSmartSql()
 {
     Assert.AreEqual("select TABLE_1_0, TABLE_1_1 from TABLE_1 order by TABLE_1_1",
                     Store.ConvertSmartSql(
                         "select {employees:firstName}, {employees:lastName} from {employees} order by {employees:lastName}"));
     Assert.AreEqual("select TABLE_2_1 from TABLE_2 order by TABLE_2_0",
                     Store.ConvertSmartSql("select {departments:name} from {departments} order by {departments:deptCode}"));
 }