.NET Core实战项目之CMS 第五章 入门篇-Dapper的快速入门看这篇就够了
写在前面
上篇文章我们讲了如在在实际项目开发中使用git来进行代码的版本控制,当然介绍的都是比较常用的功能。今天我再带着大家一起熟悉下一个orm框架dapper,实例代码的演示编写完成后我会通过git命令上传到github上,正好大家可以再次熟悉下git命令的使用,来巩固上篇文章的知识。本篇文章已经收入.net core实战项目之cms 第一章 入门篇-开篇及总体规划 有兴趣的朋友可以加入.net core项目实战交流群637326624 进行交流。
作者:依乐祝
原文地址:https://www.cnblogs.com/yilezhu/p/10024091.html
dapper是什么
dapper是.net下一个轻量级的orm框架,它和entity framework或nhibnate不同,属于轻量级的,并且是半自动的。也就是说实体类都要自己写。它没有复杂的配置文件,一个单文件就可以了。dapper通过扩展你的idbconnection来进行工作的。如果你想了解更多内容的话请点击这里。
dapper快速入门
前面几篇文章我们进行介绍的时候都是手动在代码里面创建的模拟数据,这篇文章我们就结合dapper来从数据库进行相关的操作。为了演示的方便,这里的实例代码我们就使用一个简单地asp.net core控制台程序来进行。
开始前的准备
在我们的项目文件夹,单击鼠标右键选择“在当前文件夹下面打开git bash”
-
然后输入
git checkout master
切换回mater分支,然后输入git checkout -b sample05
创建一个新的名为“sample05”的分支,如下所示: -
使用vs2017创建一个新的项目,名称为“sample05” 位置位于我们当前的目录,如下图所示:
-
接下来打开数据库,新建一个content内容表,表结构还沿用之前教程中的实体,这里只给出mssql的脚本:至于mysql的你自己建了,如果你实在不会的话可以到群里问其他小伙伴要吧
create table [dbo].[content]( [id] [int] identity(1,1) not null, [title] [nvarchar](50) not null, [content] [nvarchar](max) not null, [status] [int] not null, [add_time] [datetime] not null, [modify_time] [datetime] null, constraint [pk_content] primary key clustered ( [id] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] textimage_on [primary] go alter table [dbo].[content] add constraint [df_content_status] default ((1)) for [status] go alter table [dbo].[content] add constraint [df_content_add_time] default (getdate()) for [add_time] go create table [dbo].[comment]( [id] [int] identity(1,1) not null, [content_id] [int] not null, [content] [nvarchar](512) not null, [add_time] [datetime] not null, constraint [pk_comment] primary key clustered ( [id] asc )with (pad_index = off, statistics_norecompute = off, ignore_dup_key = off, allow_row_locks = on, allow_page_locks = on) on [primary] ) on [primary] go alter table [dbo].[comment] add constraint [df_comment_add_time] default (getdate()) for [add_time] go
-
项目中新增数据库表对应的实体对象,代码如下:
public class content { /// <summary> /// 主键 /// </summary> public int id { get; set; } /// <summary> /// 标题 /// </summary> public string title { get; set; } /// <summary> /// 内容 /// </summary> public string content { get; set; } /// <summary> /// 状态 1正常 0删除 /// </summary> public int status { get; set; } /// <summary> /// 创建时间 /// </summary> public datetime add_time { get; set; } = datetime.now; /// <summary> /// 修改时间 /// </summary> public datetime? modify_time { get; set; } } public class comment { /// <summary> /// 主键 /// </summary> public int id { get; set; } /// <summary> /// 文章id /// </summary> public int content_id { get; set; } /// <summary> /// 评论内容 /// </summary> public string content { get; set; } /// <summary> /// 添加时间 /// </summary> public datetime add_time { get; set; } = datetime.now; }
-
项目中添加dapper的nugets包,相信一路看教程过来的你一定知道怎么新增nuget包吧,这里就不过多介绍了。
实战演示
-
插入操作:将一个对象插入到数据库中,代码如下:
/// <summary> /// 测试插入单条数据 /// </summary> static void test_insert() { var content = new content { title = "标题1", content = "内容1", }; using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"insert into [content] (title, [content], status, add_time, modify_time) values (@title,@content,@status,@add_time,@modify_time)"; var result = conn.execute(sql_insert, content); console.writeline($"test_insert:插入了{result}条数据!"); } }
-
一次批量插入多条数据,测试代码如下:
/// <summary> /// 测试一次批量插入两条数据 /// </summary> static void test_mult_insert() { list<content> contents = new list<content>() { new content { title = "批量插入标题1", content = "批量插入内容1", }, new content { title = "批量插入标题2", content = "批量插入内容2", }, }; using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"insert into [content] (title, [content], status, add_time, modify_time) values (@title,@content,@status,@add_time,@modify_time)"; var result = conn.execute(sql_insert, contents); console.writeline($"test_mult_insert:插入了{result}条数据!"); } }
-
执行下代码查看到控制台输出如下的结果:
然后到数据库查看下表中的数据如下:
-
下面我们再分别测试下删除一条数据,与一次删除多条数据吧,代码如下:
/// <summary> /// 测试删除单条数据 /// </summary> static void test_del() { var content = new content { id = 2, }; using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"delete from [content] where (id = @id)"; var result = conn.execute(sql_insert, content); console.writeline($"test_del:删除了{result}条数据!"); } } /// <summary> /// 测试一次批量删除两条数据 /// </summary> static void test_mult_del() { list<content> contents = new list<content>() { new content { id=3, }, new content { id=4, }, }; using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"delete from [content] where (id = @id)"; var result = conn.execute(sql_insert, contents); console.writeline($"test_mult_del:删除了{result}条数据!"); } }
然后去数据库里查看,发现主键为2,3,4的数据都已经被删除了,如下图所示:
-
下面我们再测试下修改吧,也是分别测试一次只修改一条数据(主键为5),与一次批量修改多条数据(主键为6,7)
/// <summary> /// 测试修改单条数据 /// </summary> static void test_update() { var content = new content { id = 5, title = "标题5", content = "内容5", }; using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"update [content] set title = @title, [content] = @content, modify_time = getdate() where (id = @id)"; var result = conn.execute(sql_insert, content); console.writeline($"test_update:修改了{result}条数据!"); } } /// <summary> /// 测试一次批量修改多条数据 /// </summary> static void test_mult_update() { list<content> contents = new list<content>() { new content { id=6, title = "批量修改标题6", content = "批量修改内容6", }, new content { id =7, title = "批量修改标题7", content = "批量修改内容7", }, }; using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"update [content] set title = @title, [content] = @content, modify_time = getdate() where (id = @id)"; var result = conn.execute(sql_insert, contents); console.writeline($"test_mult_update:修改了{result}条数据!"); } }
现在我们执行下测试代码看下结果吧
再到数据库中查看下数据,上步骤5中最后一张图相比较
-
增删改都测试了,下面就开始测试查询吧,我们分别来测试下查询指定的数据以及一次查询多条数据来看下结果吧。还是先上代码,:
/// <summary> /// 查询单条指定的数据 /// </summary> static void test_select_one() { using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"select * from [dbo].[content] where id=@id"; var result = conn.queryfirstordefault<content>(sql_insert, new { id=5}); console.writeline($"test_select_one:查到的数据为:"); } } /// <summary> /// 查询多条指定的数据 /// </summary> static void test_select_list() { using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"select * from [dbo].[content] where id in @ids"; var result = conn.query<list<content>>(sql_insert, new { ids=new int[] { 6,7} }); console.writeline($"test_select_one:查到的数据为:"); } }
然后我们打上断点然后去看下结果吧!这里图片我没有截成功,所以就不贴了。
-
关联查询,dapper的强大之处就在于其关联查询了!为了测试的方便,我们给主键为5的content添加两个comment中,这个插入的代码就不贴出来了,留给大家自行书写吧,如果不会的话可以加群问群里的其他小伙伴吧。这里需要新建一个类
public class contentwithcommnet { /// <summary> /// 主键 /// </summary> public int id { get; set; } /// <summary> /// 标题 /// </summary> public string title { get; set; } /// <summary> /// 内容 /// </summary> public string content { get; set; } /// <summary> /// 状态 1正常 0删除 /// </summary> public int status { get; set; } /// <summary> /// 创建时间 /// </summary> public datetime add_time { get; set; } = datetime.now; /// <summary> /// 修改时间 /// </summary> public datetime? modify_time { get; set; } /// <summary> /// 文章评论 /// </summary> public ienumerable<comment> comments { get; set; } }
然后就是测试代码,运行的查询测试代码如下:查询id为5的文章,文章是包含评论列表的
代码如下:
static void test_select_content_with_comment() { using (var conn = new sqlconnection("data source=127.0.0.1;user id=sa;password=1;initial catalog=czar.cms;pooling=true;max pool size=100;")) { string sql_insert = @"select * from content where id=@id; select * from comment where content_id=@id;"; using (var result = conn.querymultiple(sql_insert, new { id = 5 })) { var content = result.readfirstordefault<contentwithcomment>(); content.comments = result.read<comment>(); console.writeline($"test_select_content_with_comment:内容5的评论数量{content.comments.count()}"); } } }
结果如下所示,调试的代码没法截图我也很无奈。
github源码
github的测试源码已经上传,https://github.com/yilezhu/czar.cms/tree/sample05 放在czar.cms的sample05分支上面。大家可以参考下,觉得有用的话记得star哦!
总结
本文给大家演示了dapper的常用方法,不过都是通过同步的方式进行操作的,如果你想使用异步的话可以自行进行测试。文中的大部分内容都有截图,个别调试无法截图的大伙可以自行调试查看!相信通过本文的实例讲解,大伙应该能够使用dapper进行相应的开发!下一篇文章我们将进行vue的讲解!当然也只是进行很浅层次的讲解。因为我是一个后端,也是抱着学习的态度来进行vue的记录的!主要是以快速上为主。
推荐阅读
-
.NET Core实战项目之CMS 第四章 入门篇-Git的快速入门及实战演练
-
.NET Core实战项目之CMS 第二章 入门篇-快速入门ASP.NET Core看这篇就够了
-
.NET Core实战项目之CMS 第五章 入门篇-Dapper的快速入门看这篇就够了
-
.NET Core实战项目之CMS 第六章 入门篇-Vue的快速入门及其使用
-
.NET Core实战项目之CMS 第四章 入门篇-Git的快速入门及实战演练
-
.NET Core实战项目之CMS 第二章 入门篇-快速入门ASP.NET Core看这篇就够了
-
.NET Core实战项目之CMS 第五章 入门篇-Dapper的快速入门看这篇就够了
-
.NET Core实战项目之CMS 第六章 入门篇-Vue的快速入门及其使用