让Dapper支持Mock

Dapper,在.net的ORM中占有一席之地,用法简单,灵活,使用如下。但也带来一个问题,就是在单元测试时,Mock比较难办。

 public List<Goods> GetAllGoods(){using var con = new SqlConnection();var sql = "select * from Goodses";var list = con.Query<Goods>(sql, new { id = 1 }).ToList();return list;}

mock最好是一个接口,但Dapper是基于IDbConnection做的扩展方法,为了能把这些方法的功能抽出来到一个接口,这里要经过一个设计,来转嫁调用这些扩展方法,具体做法如下:

定义接口IGUIDapper.cs

    /// <summary>/// IDapperPlus接口/// </summary>public interface IDapperPlus{/// <summary>/// 连接/// </summary>public IDbConnection Connection{get;}/// <summary>/// Executes a single-row query, returning the data typed as type./// </summary>/// <param name="type">The type to return.</param>/// <param name="sql">The SQL to execute for the query.</param>/// <param name="param">The parameters to pass, if any.</param>/// <param name="transaction">The transaction to use, if any.</param>/// <param name="buffered">Whether to buffer results in memory.</param>/// <param name="commandTimeout">The command timeout (in seconds).</param>/// <param name="commandType">The type of command to execute.</param>/// <returns>A sequence of data of the supplied type; if a basic type(int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is created per row, and a direct column-name===member-name mapping is assumed(case insensitive)./// 异常:T:System.ArgumentNullException:type is null./// </returns>IEnumerable<object> Query(Type type, string sql, object param = null, IDbTransaction transaction = null, bool buffered = true, int? commandTimeout = null, CommandType? commandType = null);                       /// <summary>/// Execute parameterized SQL./// </summary>/// <param name="sql">The SQL to execute for this query.</param>/// <param name="param">The parameters to use for this query.</param>/// <param name="transaction">The transaction to use for this query.</param>/// <param name="commandTimeout">Number of seconds before command execution timeout.</param>/// <param name="commandType">Is it a stored proc or a batch?</param>/// <returns>The number of rows affected.</returns>int Execute(string sql, object param = null, IDbTransaction transaction = null, int? commandTimeout = null, CommandType? commandType = null)//这里省略n多个方法}

DapperPlus.cs接口的实现类,这里把对Dapper基于IDbConnection扩展方法的调用,转到方法的实现中调用,实现方法与扩展方法完全相同。

    /// <summary>/// DapperPlus 类/// </summary>public class DapperPlus : IDapperPlus{protected IDbConnection _connection;/// <summary>/// 构造/// </summary>/// <param name="connection">连接</param>/// <param name="configuration">配置</param>public DapperPlus (IDbConnection connection, IConfiguration configuration){_connection = connection;_connection.ConnectionString = configuration.GetConnectionString("DefaultConnectionString");  }  /// <summary>/// 连接/// </summary>public IDbConnection Connection{get{return _connection;}}   /// <summary>/// Executes a single-row query, returning the data typed as type./// </summary>/// <param name="type">The type to return.</param>/// <param name="sql">The SQL to execute for the query.</param>/// <param name="param">The parameters to pass, if any.</param>/// <param name="transaction">The transaction to use, if any.</param>/// <param name="buffered">Whether to buffer results in memory.</param>/// <param name="commandTimeout">The command timeout (in seconds).</param>/// <param name="commandType">The type of command to execute.</param>/// <returns>A sequence of data of the supplied type; if a basic type(int, string, etc) is queried then the data from the first column in assumed, otherwise an instance is created per row, and a direct column-name===member-name mapping is assumed(case insensitive)./// 异常:T:System.ArgumentNullException:type is null./// </returns>public IEnumerable<object> Query(Type type, string sql, object param = null, IDbTransaction transaction = null, bool buffered = true, int? commandTimeout = null, CommandType? commandType = null){return _connection.Query(type, sql, param, transaction, buffered, commandTimeout, commandType);}/// <summary>/// Execute parameterized SQL./// </summary>/// <param name="sql">The SQL to execute for this query.</param>/// <param name="param">The parameters to use for this query.</param>/// <param name="transaction">The transaction to use for this query.</param>/// <param name="commandTimeout">Number of seconds before command execution timeout.</param>/// <param name="commandType">Is it a stored proc or a batch?</param>/// <returns>The number of rows affected.</returns>public int Execute(string sql, object param = null, IDbTransaction transaction = null, int? commandTimeout = null, CommandType? commandType = null){return _connection.Execute(sql, param, transaction, commandTimeout, commandType);}   //这里省略n多个实现方法     }    

Starup.cs中注入就ok了

public void ConfigureServices(IServiceCollection services)
{services.AddControllers();services.AddScoped<IDbConnection, SqlConnection>();services.AddScoped<IDapperPlus, DapperPlus>();
}

appsettings.json

  "ConnectionStrings": {"DefaultConnectionString": "server=127.0.0.1;uid=root;pwd=root;database=read_mysql_testdb"}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/302312.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

收藏 | 分享 3 种脑洞大开的Excel技巧

全世界只有3.14 % 的人关注了数据与算法之美身为职场人&#xff0c;Excel基本是每天都会打开的软件&#xff0c;如果把对它的使用熟练程度分个等级&#xff0c;大概可以分为几下几种&#xff1a;Level 1&#xff1a;对Excel的基本功能已经有所了解&#xff0c;但还不熟练&#…

Java JSON对象怎么遍历_Java遍历JsonObject对象

方法&#xff1a;Iterator iter jsonInfo.entrySet().iterator();代码示例&#xff1a;public class Test {public static void main(String[] args) {JSONObject jsonInfo new JSONObject();String key1 "a";jsonInfo.put(key1, "aa");String key2 &q…

飞机加油的问题

一道关于飞机加油的问题&#xff0c;已知&#xff1a;每个飞机只有一个油箱&#xff0c;飞机之间可以相互加油(注意是相互&#xff0c;没有加油机一箱油可供一架飞机绕地球飞半圈&#xff0c; 问题&#xff1a;为使至少一架飞机绕地球一圈回到起飞时的飞机场&#xff0c;至少需…

如何学人工智能的思考

起因&#xff1a;昨晚在人工智能大师班微信群里有同事问&#xff0c;数学如何学。我有感而发发表了一下我学习人工智能的思路。一觉睡醒&#xff0c;昨晚的讨论又让我有了新的思考。所以写了这篇文章。背景&#xff1a;1. 我曾经花过几个月的时间去学习人工智能里的专家系统和P…

yaml for java_细数Java项目中用过的配置文件(YAML篇)

灵魂拷问&#xff1a;YAML&#xff0c;在项目中用过没&#xff1f;它与 properties 文件啥区别&#xff1f;目前 SpringBoot、SpringCloud、Docker 等各大项目、各大组件&#xff0c;在使用过程中几乎都能看到 YAML 文件的身影。2017 年的时候&#xff0c;我才真正把 YAML 文件…

思科路由PPPOE基本配置

思科PPPOE基本配置用思科路由怎样配置PPPOE&#xff0c;自动拨号上网1、第一步&#xff1a;首先要配置VPDN组R1(config)#vpdn enableR1(config)#vpdn-group 1R1(config-vpdn)#request-dialinR1(config-vpdn-req-in)#protocol pppoe2、第二步&#xff1a;配置路由器连接ADSL MOD…

超全面!8 种互联网常用生命周期完整指南~

什么是生命周期&#xff1f; 百度给出的定义是&#xff1a;生命周期就是指一个对象的生老病死。 生命周期的概念应用很广泛&#xff0c;特别是在政治、经济、环境、技术、社会等诸多领域经常出现&#xff0c;其基本涵义可以通俗地理解为“从摇篮到坟墓”的整个过程。对于某个…

技术分享|集成开放平台使用Consul Watch机制实现配置热更新

源宝导读&#xff1a;在微服务架构体系中&#xff0c;由于微服务众多&#xff0c;服务之间又有互相调用关系&#xff0c;因此&#xff0c;一个通用的分布式配置管理是必不可少的。本文将介绍如何使用Consul Watch机制实现配置集中管理与热更新。前言随着程序功能的日益复杂&…

14个超有料的优质公众号,关注了就舍不得删

全世界有3.14 % 的人已经关注了数据与算法之美关注了那么多公众号&#xff0c;百无聊奈地看文章你是否觉得时间被浪费&#xff0c;生命被辜负了&#xff1f;在号的数量上做减法&#xff0c;质量上做加法接下来给大家推荐最近一直在阅读的几个优质公众号每一篇推文都值得你点开长…

python新手入门项目推荐_推荐:一个适合于Python新手的入门练手项目

随着人工智能的兴起&#xff0c;国内掀起了一股Python学习热潮&#xff0c;入门级编程语言&#xff0c;大多选择Python&#xff0c;有经验的程序员&#xff0c;也开始学习Python&#xff0c;正所谓是人生苦短&#xff0c;我用Python有个Python入门练手项目&#xff0c;一直没有…

ssh证书登录(实例详解)

前言 本文基于实际Linux管理工作&#xff0c;实例讲解工作中使用ssh证书登录的实际流程&#xff0c;讲解ssh证书登录的配置原理&#xff0c;基于配置原理&#xff0c;解决实际工作中&#xff0c;windows下使用SecureCRT证书登录的各种问题&#xff0c;以及实现hadoop集群部署要…

基于虹软人脸识别,实现RTMP直播推流追踪视频中所有人脸信息(C#)

大家应该都知道几个很常见的例子&#xff0c;比如在张学友的演唱会&#xff0c;在安检通道检票时&#xff0c;通过人像识别系统成功识别捉了好多在逃人员&#xff0c;被称为逃犯克星&#xff1b;人行横道不遵守交通规则闯红灯的路人被人脸识别系统抓拍放在大屏上以示警告&#…

这些数据获取方式,一般人不知道

全世界只有3.14 % 的人关注了数据与算法之美在这个用数据说话的时代&#xff0c;能够打动人的往往是用数据说话的理性分析&#xff0c;无论是对于混迹职场的小年轻&#xff0c;还是需要数据进行分析和研究的同学&#xff0c;能够找到合适的数据源都是非常重要的。特别是想要对一…

ftp 笔记

Ubuntu自带wget。如果没有密码的ftp&#xff0c;直接wget ftp://111.222.33.4/path/filename&#xff0c;就可以下载ftp://111.222.33.4的文件夹path里的文件filename。如果是有密码的ftp&#xff0c;则wget ftp://username:passwordftp.111.222.33.4/path/filename。如果用的…

java定义构造方法_JAVA基础学习之路(三)类定义及构造方法

类的定义及使用一&#xff0c;类的定义classBook {//定义一个类intprice;//定义一个属性intnum;public static int getMonney(int price, intnum) {//定义一个方法return price*num;}}public classtest2 {public static voidmain(String args[]) {Book monney newBook();//声明…

通过Dapr实现一个简单的基于.net的微服务电商系统(十一)——一步一步教你如何撸Dapr之自动扩/缩容...

上一篇我们讲到了dapr提供的bindings&#xff0c;通过绑定可以让我们的程序轻装上阵&#xff0c;在极端情况下几乎不需要集成任何sdk&#xff0c;仅需要通过httpclienttext.json即可完成对外部组件的调用&#xff0c;这样只需要对外暴露一个轻量级的http服务器提供restapi即可作…

了解IT行业前沿应用,关注数据与算法之美

点击上方蓝色字体&#xff0c;关注我们!

windows php的Memcache安装和使用方法

下载 &#xff1a;memcached.exe解压到 下载&#xff1a;php_memcache.dll 把它放入php文件夹的ext目录中。在php.ini加入一行引用扩展&#xff0c;代码如下&#xff1a;extensionphp_memcache.dll重启Apache服务器然后查看一下phpinfo可以找到memcache信息 说明安装成功测试启…

java junit4_JUnit4使用Java5中的单元测试

1、JUnit4使用Java5中的注解(annotation)Before&#xff1a;初始化方法 对于每一个测试方法都要执行一次(注意与BeforeClass区别&#xff0c;后者是对于所有方法执行一次)After&#xff1a;释放资源 对于每一个测试方法都要执行一次(注意与AfterClass区别&#xff0c;后者是…

云原生ASP.NET Core程序的可监测性和可观察性

点击蓝字关注我们分布式应用程序很复杂&#xff0c;给开发人员调试和修复生产问题带来了一系列挑战。尽管微服务架构可帮助维持一支规模较小&#xff0c;可以自主工作并专注于独立业务团队&#xff0c;但由于其分布式性质&#xff0c;它带来了新的挑战。例如&#xff0c;在业务…