A small extension of dapper to support datasets

Source: Internet
Author: User

Not much nonsense, just on the way

1          Public StaticDataSet ExecuteDataset ( ThisIDbConnection CNN, IDbDataAdapter Adapter,stringSqlObjectparam =NULL,BOOLBuffered =true,int? CommandTimeout =NULL, CommandType? CommandType =NULL)2         {3             varDS =NewDataSet ();4             varCommand =NewCommanddefinition (SQL, (Object) param,NULL, CommandTimeout, CommandType, buffered?CommandFlags.Buffered:CommandFlags.None);5             varIdentity =NewIdentity (Command.commandtext, Command.commandtype, CNN,NULL, param = =NULL?NULL: Param. GetType (),NULL);6             varinfo =getcacheinfo (Identity, param, command. Addtocache);7             BOOLWasclosed = CNN. state = =connectionstate.closed;8             if(wasclosed) CNN. Open ();9Adapter. SelectCommand =command. SetupCommand (CNN, info.) Paramreader);Ten adapter. Fill (DS); One             if(wasclosed) CNN. Close (); A             returnds; -}

Add it below the Query method

Use Demo

var mysqlds = con. ExecuteDataset (New Mysqldataadapter (), "select * from wjf_role_relation where [email protected]_id", new {role_id = ' 1 '} );

A small extension of dapper to support datasets

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.