SqlParameter Multi-parameter dynamic splicing to solve parametric problems

Source: Internet
Author: User

Multiple parameterization is fixed relatively easy, a number of dynamic on a bit ... Work with problems to sort out share, on the code

sqlparameter[] param = new sqlparameter[] {};   list<sqlparameter> sqlparameterlist = new list<sqlparameter> ();            Here is the point, take a mind to remember. if(!string. IsNullOrEmpty (cpId)) {SQL+="and a.cpid [email protected]"; Sqlparameterlist.add (NewSqlParameter {parametername ="@cpId", Value = cpId, SqlDbType = SqlDbType.VarChar, Size = - }); }            if(!string. IsNullOrEmpty (cpname)) {SQL+="and b.name like @cpName"; Sqlparameterlist.add (NewSqlParameter {parametername ="@cpName", Value ='%'+ CPName +'%', SqlDbType = SqlDbType.VarChar, Size = - }); }            if(!string. IsNullOrEmpty (status)) {SQL+="and b.status = @status"; Sqlparameterlist.add (NewSqlParameter {parametername ="@status", Value = status, SqlDbType = SqlDbType.Int, Size =Ten }); }            //SQL + = "ORDER by createdatetime Desc";param= Sqlparameterlist.toarray ();

Finally, it's OK with Param.

SqlParameter Multi-parameter dynamic splicing to solve parametric problems

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.