/// <summary> /// 返回一个Sql节 /// </summary> /// <param name="sql"></param> /// <returns></returns> public SqlSection FromSql(string sql, IDictionary <string, object> parameters) { SqlSection section = new SqlSection(sql, dbProvider, this); return(section.AddParameters(parameters)); }
/// <summary> /// 返回一个Sql节 /// </summary> /// <param name="sql"></param> /// <returns></returns> public SqlSection FromSql(string sql, params SQLParameter[] parameters) { SqlSection section = new SqlSection(sql, dbProvider, this); return(section.AddParameters(parameters)); }