Exemplo n.º 1
0
 private static SqlParameter GetQuerySqlParamter(QueryParamater qp, string queryValue, Int32 i)
 {
     return(new SqlParameter(string.Format("@{0}{1}", qp.QueryName, i), queryValue));
 }
Exemplo n.º 2
0
 private static SqlParameter GetQuerySqlParamter(QueryParamater qp, Int32 i)
 {
     return(GetQuerySqlParamter(qp, qp.QueryValue, i));
 }