弓背霞明剑照霜,秋风走马出咸阳。这篇文章主要讲述Dapper源码讲解相关的知识,希望能为你提供帮助。
Nuget下载dapper的程序集,浏览公开的方法,如下图所示
文章图片
主要讲解:Execute方法的调用过程,
public static int Execute(this IDbConnection cnn, string sql, object param = null, IDbTransaction transaction = null, int? commandTimeout = null, CommandType? commandType = null)
此方法代码:
文章图片
内部调用了ExecuteImpl方法
文章图片
文章图片
上图,数字修正为数组
下面讲解ExecuteCommand方法
文章图片
上面的代码中一共出现两个类Identity(标识),CacheInfo(缓存信息)
先说Identity这个类,是用来对CommandText,CommandType,cnn,param的一个封装,用于唯一标识这些对象。为缓存机制,提供一个唯一标识。
identity = new Identity(command.CommandText, command.CommandType, cnn, null, param.GetType(), null);
那么我们再来看这个类CacheInfo,用identity,param,bool参数来构造。
info = GetCacheInfo(identity, param, command.AddToCache);
下面看它的构造函数:
文章图片
文章图片
我们接下来,查看步骤3中的圈着的方法,是用来生成一个无返回值的委托,参数是ICommand和object
文章图片
【Dapper源码讲解】
推荐阅读
- Android -Services 使用简介
- Android网络框架OkHttp之get请求(源码初识)
- android脱壳之DexExtractor原理分析[zhuan]
- Android之Http通信——1.初识Http协议
- PowerPoint2007播放演示文稿办法_PowerPoint专区
- PowerPoint2007运用现有演示文稿创建新演示文稿办法_PowerPoint专区
- PowerPoint2007运用帮助系统是啥?_PowerPoint专区
- Excel2010图文详细教程:把小数转换成百分数办法_Excel专区
- Word2013文字样式怎样更改?_Word专区