博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
dajpper使用教程
阅读量:5828 次
发布时间:2019-06-18

本文共 1525 字,大约阅读时间需要 5 分钟。

1.表结构

2、程序对应的实体类

3、基本操作

  • 3.1 插入

    1 2 3 4 5 6 7 8 9
    public int Insert(Person person, string _ConnString) {
    using (IDbConnection connection = new SqlConnection(_ConnString)) {
    return connection.Execute("insert into Person(Name,Remark) values(@Name,@Remark)", person); } }
  • 3.2 删除

    1 2 3 4 5 6 7
    public int Delete(Person person, string connectionString) {
    using (IDbConnection connection = new SqlConnection(connectionString)) {
    return connection.Execute("delete from Person where id=@ID", person); } }
  • 3.3 修改

    1 2 3 4 5 6 7
    public int Update(Person person, string connectionString) {
    using (IDbConnection connection = new SqlConnection(connectionString)) {
    return connection.Execute("update Person set name=@Name where id=@ID", person); } }
  • 3.4 查询

    1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
    ///  /// 批量修改 ///  ///  ///  /// 
    public int Update(List
    persons, string connectionString) { using (IDbConnection connection = new SqlConnection(connectionString)) { return connection.Execute("update Person set name=@name where id=@ID", persons); } } ///
    /// 无参查询所有数据 /// ///
    public List
    Query(string connectionString) { using (IDbConnection connection = new SqlConnection(connectionString)) { return connection.Query
    ("select * from Person").ToList(); } }
  • 其余内容:

转载地址:http://bwodx.baihongyu.com/

你可能感兴趣的文章
基本概念复习
查看>>
重构第10天:提取方法(Extract Method)
查看>>
Android Fragment使用(四) Toolbar使用及Fragment中的Toolbar处理
查看>>
解决pycharm在ubuntu下搜狗输入法一直固定在左下角的问题
查看>>
多线程day01
查看>>
react-native 模仿原生 实现下拉刷新/上拉加载更多(RefreshListView)
查看>>
MySQL出现Access denied for user ‘root’@’localhost’ (using password:YES)
查看>>
通过Roslyn构建自己的C#脚本(更新版)(转)
查看>>
红黑树
查看>>
python调用windows api
查看>>
第四章 mybatis批量insert
查看>>
Java并发框架——什么是AQS框架
查看>>
【数据库】
查看>>
Win配置Apache+mod_wsgi+django环境+域名
查看>>
linux清除文件内容
查看>>
WindowManager.LayoutParams 详解
查看>>
find的命令的使用和文件名的后缀
查看>>
Android的Aidl安装方法
查看>>
Linux中rc的含义
查看>>
曾鸣:区块链的春天还没有到来| 阿里内部干货
查看>>