1、表结构介绍:

1)课程表

2)成绩表

3)学生表

2、获取数据库连接的工厂类

需要添加System.Configuration和MySql.Data.MySqlClient引用

namespace db
{
/// <summary>
/// 数据库连接工厂
/// </summary>
public class dbFactory
{
public static string connStr = ConfigurationManager.ConnectionStrings["dbConn"].ConnectionString;
private static string prividerName = ConfigurationManager.ConnectionStrings["dbConn"].ProviderName; public static IDbConnection createConn()
{
IDbConnection conn = null;
switch (prividerName)
{
case "System.Data.SqlClient":
conn = new SqlConnection(connStr);
break;
case "MySql.Data.MySqlClient":
conn = new MySqlConnection(connStr);
break;
}
return conn;
}
}
}

3、模型类定义

namespace db.model
{
public class Couser
{
public int id { get; set; }
public string courseName { get; set; }
}
public partial class Score
{
public int id { get; set; }
public int score { get; set; }
public int courseId { get; set; }
public int studentId { get; set; }
}
public partial class Student
{
public int id { get; set; }
public string name { get; set; }
public int sex { get; set; }
public string tel { get; set; }
public string other { get; set; }
}
}

4、需要引入的包

using Dapper;
using DapperExtensions;
using db.model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Data;
using System.Data.SqlClient;
using System.Text;

5、相关使用例子

 //查询单个实体
public static Couser query()
{
using (IDbConnection conn = db.dbFactory.createConn())
{
Console.WriteLine(conn.State);
//原生写法
string sql = " SELECT * FROM dbo.Course where id=@id ";
Couser model1 = conn.QueryFirstOrDefault<Couser>(sql, new { id = });
Console.WriteLine(conn.State);
return model1;
}
} //过滤查询like方式1
public static List<Couser> queryWhere1(string courseName)
{
using (IDbConnection conn = db.dbFactory.createConn())
{
//原生写法 模糊查询1
string sql = " SELECT * FROM dbo.Course where charindex(@courseName,courseName)>0 ";
List<Couser> list = conn.Query<Couser>(sql, new { courseName = courseName }).ToList();
return list;
}
} //过滤查询like方式2
public static List<Couser> queryWhere2(string courseName)
{
using (IDbConnection conn = db.dbFactory.createConn())
{
//原生写法 模糊查询2
string sql = " SELECT * FROM dbo.Course where courseName like @courseName ";
List<int> idList = new List<int>();
List<Couser> list = conn.Query<Couser>(sql, new { courseName = $"%{courseName}%" }).ToList();
return list;
}
} //in 查询
public static List<Couser> queryWhere3()
{
List<int> idList = new List<int>();
idList.Add();
idList.Add();
idList.Add();
idList.Add(); using (IDbConnection conn = db.dbFactory.createConn())
{
//原生写法 模糊查询2
string sql = " SELECT * FROM dbo.Course where id in @id ";
List<Couser> list = conn.Query<Couser>(sql, new { id = idList }).ToList();
return list;
}
} //查询所有
public static List<Couser> queryAll()
{
using (IDbConnection conn = db.dbFactory.createConn())
{
//原生写法
string sql = " SELECT * FROM dbo.Course ";
List<Couser> list = conn.Query<Couser>(sql).ToList();
return list;
}
} //返回动态类型
public static List<dynamic> getStudentScore()
{
using (IDbConnection conn = db.dbFactory.createConn())
{
//原生写法
string sql = @" SELECT dbo.Student.name,courseName,score FROM dbo.Course
LEFT JOIN dbo.Score ON dbo.Course.id = coursedId
LEFT JOIN dbo.Student ON studentId = dbo.Student.id; ";
List<dynamic> list = conn.Query<dynamic>(sql).ToList();
return list;
}
} //新增
public static int insert()
{
using (IDbConnection conn = db.dbFactory.createConn())
{
db.model.Couser model = new Couser();
model.courseName = "数据库原理";
//原生写法
string sql = " INSERT INTO dbo.Course(courseName ) VALUES (@courseName) ";
return conn.Execute(sql, model);
}
} //批量新增
public static void insertBatch()
{
using (IDbConnection conn = db.dbFactory.createConn())
{
List<Couser> list = new List<Couser>();
list.Add(new Couser { courseName = "Batch1" });
list.Add(new Couser { courseName = "Batch2" }); Console.WriteLine(conn.State);
//原生写法
string sql = " INSERT INTO dbo.Course(courseName ) VALUES (@courseName) ";
conn.Execute(sql, list);
Console.WriteLine(conn.State); }
} //修改
public static void update()
{
using (IDbConnection conn = dbFactory.createConn())
{
db.model.Couser model = new Couser();
model.id = ;
model.courseName = "数据库原理1";
//原生写法
string sql = " UPDATE dbo.Course SET courseName=@courseName WHERE id=@id ";
conn.Execute(sql, model);
}
} //删除
public static void delete()
{
using (IDbConnection conn = dbFactory.createConn())
{
string sql = " DELETE FROM dbo.Course WHERE id=@id ";
conn.Execute(sql, new { id = });
}
} //事务控制
public static void testTran()
{
using (IDbConnection conn = dbFactory.createConn())
{
conn.Open();
IDbTransaction ts = conn.BeginTransaction();
try
{
string sql1 = " DELETE FROM dbo.Course WHERE id=@id ";
conn.Execute(sql1, new { id = }, ts); string sql2 = " INSERT INTO dbo.Course(id, courseName ) VALUES (N'4', N'sdfsfd') ";
conn.Execute(sql2, new { id = }, ts); ts.Commit();
}
catch (Exception ex)
{
ts.Rollback();
}
finally
{
conn.Close();
}
}
}

2、Dapper的使用的更多相关文章

  1. Dapper逆天入门~强类型,动态类型,多映射,多返回值,增删改查+存储过程+事物案例演示

    Dapper的牛逼就不扯蛋了,答应群友做个入门Demo的,现有园友需要,那么公开分享一下: 完整Demo:http://pan.baidu.com/s/1i3TcEzj 注 意 事 项:http:// ...

  2. Dapper扩展之~~~Dapper.Contrib

    平台之大势何人能挡? 带着你的Net飞奔吧!http://www.cnblogs.com/dunitian/p/4822808.html#skill 上一篇文章:Dapper逆天入门~强类型,动态类型 ...

  3. 由Dapper QueryMultiple 返回数据的问题得出==》Dapper QueryMultiple并不会帮我们识别多个返回值的顺序

    异常汇总:http://www.cnblogs.com/dunitian/p/4523006.html#dapper 今天帮群友整理Dapper基础教程的时候手脚快了点,然后遇到了一个小问题,Dapp ...

  4. Dapper.Contrib:GetAsync<T> only supports an entity with a [Key] or an [ExplicitKey] property

    异常处理:http://www.cnblogs.com/dunitian/p/4523006.html#dapper 原来Model是这样滴 修改后是这样滴 注意点:Model里面的Table和Key ...

  5. Dapper where Id in的解决方案

    简单记一下,一会出去有点事情~ 我们一般写sql都是==>update NoteInfo set NDataStatus=@NDataStatus where NId in (@NIds) Da ...

  6. ASP.NET Core 1.0 使用 Dapper 操作 MySql(包含事务)

    操作 MySql 数据库使用MySql.Data程序包(MySql 开发,其他第三方可能会有些问题). project.json 代码: { "version": "1. ...

  7. Asp.Net Core + Dapper + Repository 模式 + TDD 学习笔记

    0x00 前言 之前一直使用的是 EF ,做了一个简单的小项目后发现 EF 的表现并不是很好,就比如联表查询,因为现在的 EF Core 也没有啥好用的分析工具,所以也不知道该怎么写 Linq 生成出 ...

  8. 搭建一套自己实用的.net架构(3)续 【ORM Dapper+DapperExtensions+Lambda】

    前言 继之前发的帖子[ORM-Dapper+DapperExtensions],对Dapper的扩展代码也进行了改进,同时加入Dapper 对Lambda表达式的支持. 由于之前缺乏对Lambda的知 ...

  9. mono for android中使用dapper或petapoco对sqlite进行数据操作

    在mono for android中使用dapper或petapoco,很简单,新建android 类库项目,直接把原来的文件复制过来,对Connection连接报错部分进行注释和修改就可以运行了.( ...

  10. Dapper:The member of type SeoTKD cannot be used as a parameter Value

    异常汇总:http://www.cnblogs.com/dunitian/p/4523006.html#dapper 上次说了一下Dapper的扩展Dapper.Contrib http://www. ...

随机推荐

  1. 模拟20 题解(waiting)

    留坑待填 T2 #include<cstdio> #include<vector> #include<cstring> #include<iostream&g ...

  2. 模拟7题解 T1方程的解

    方程的解 [扩展欧几里德] 首先进行特判,两个小时基本想到了,除了a!=0,b==0,a*c<0这种情况 其次就是一般情况: 首先exgcd求出ax+by=GCD(a,b)的一组任意解 然后两边 ...

  3. Hdu 3068 最长回文字串Manacher算法

    题目链接 最长回文 Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total S ...

  4. 从0开始学习 GitHub 系列之「01.初识 GitHub

    转载:http://blog.csdn.net/googdev/article/details/52787516 1. 写在前面 我一直认为 GitHub 是程序员必备技能,程序员应该没有不知道 Gi ...

  5. 你真的了解HTML吗

    有这么一段HTML,请挑毛病: <P> 哥写的不是HTML,是寂寞.<br><br> 我说: <br>不要迷恋哥,哥只是一个传说 这是原来雅虎一道笔试题 ...

  6. 基于mcp940反编译Minecraft源代码

    引言 Minecraft中文叫"我的世界",没怎么深入玩过,来试试把它源代码反编译出来吧. 参考教程: https://minecraft.gamepedia.com/Mods/C ...

  7. ubuntn 18 开起ssh 并用root远程登陆

    原文:ubuntn 18 开起ssh 并用root远程登陆 版权声明:本文为博主原创文章,随意转载. https://blog.csdn.net/Michel4Liu/article/details/ ...

  8. 实现一个vue的图片预览插件

    vue-image-swipe 基于photoswipe实现的vue图片预览组件 安装 1 第一步 npm install vue-image-swipe -D 2 第二步 vue 入口文件引入 im ...

  9. 洛谷P1063 能量项链 [2006NOIP提高组]

    P1063 能量项链 题目描述 在Mars星球上,每个Mars人都随身佩带着一串能量项链.在项链上有N颗能量珠.能量珠是一颗有头标记与尾标 记的珠子,这些标记对应着某个正整数.并且,对于相邻的两颗珠子 ...

  10. 【水滴石穿】react-native-book

    先推荐一个学习的地址:https://ke.qq.com/webcourse/index.html#cid=203313&term_id=100240778&taid=12778558 ...