Ejemplo n.º 1
0
        public void SqlCommandToTSQLTextTest()
        {
            SqlCommand c = new SqlCommand(GeneratorMsSql.CombinedWhere(AB.Get("a", "b"), AB.Get("1", 2)));
            //"select * from table where @a = "

            //c.Parameters.AddWithValue();
            //c.Parameters.AddWithValue();

            var d = SqlServerHelper.SqlCommandToTSQLText(c);
            int i = 0;
        }
Ejemplo n.º 2
0
 public void CombinedWhereTest()
 {
     var c = Combo();
     var s = GeneratorMsSql.CombinedWhere(c.where, c.isNotWhere, c.greaterThanWhere, c.lowerThanWhere);
 }
Ejemplo n.º 3
0
 public void CombinedWhereCommandTest()
 {
     var c = Combo();
     var s = GeneratorMsSql.CombinedWhereCommand("select * from ab", c.where, c.isNotWhere, c.greaterThanWhere, c.lowerThanWhere, "orderBy");
 }