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; }
public void CombinedWhereTest() { var c = Combo(); var s = GeneratorMsSql.CombinedWhere(c.where, c.isNotWhere, c.greaterThanWhere, c.lowerThanWhere); }
public void CombinedWhereCommandTest() { var c = Combo(); var s = GeneratorMsSql.CombinedWhereCommand("select * from ab", c.where, c.isNotWhere, c.greaterThanWhere, c.lowerThanWhere, "orderBy"); }