码迷,mamicode.com
首页 > 其他好文 > 详细

Exists 方法

时间:2017-02-04 10:52:30      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:dem   查询   logs   exist   har   blog   arguments   pen   method   

public void ExistsMethodDemo()
{
  string userId = "123";
  string userName = "admin";
  DALDb db = new DALDb();
  // sql 语句
  PetaPoco.Sql sql = PetaPoco.Sql.Builder.Append("USERID=@0", userId);
  sql.Append("and USERNAME=@0", userName);
  // 查询
  bool result = db.Exists<USER>(sql.SQL, sql.Arguments);
}

Exists 方法

标签:dem   查询   logs   exist   har   blog   arguments   pen   method   

原文地址:http://www.cnblogs.com/james641/p/6363962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!