上一篇有一个读者,有疑问,如何自动化注册Dto 我开篇,做了一个自动化注册的 public sealed class AutoInjectAttribute : Attribute { public Type SourceType { get; } public Type TargetType { get; } public AutoInjectAttribute(Type sourceType, Type targetType) { SourceType = sourceType; Targe…
VS2012 在.net 4.0下安装AutoMapper时,会报以下错误: “AutoMapper”已拥有为“Standard.Library”定义的依赖项. 'AutoMapper' already has a dependency defined for 'Standard.Library'. 经查应该是Nuget版本(VS2012的2.83版本)较低引起的,不支持Standard.Library框架. 解决方法有两个: 方式一NuGet 2.12支持AutoMapper 5.0.1 Nu…
下面是官方的性能测试 Demo,感性的也可以去 Github 上下载. 贴出代码目的是如果后期直接从自己的博客中在线看. using System; using System.Collections.Generic; using System.Diagnostics; using AutoMapper; using Benchmark.Classes; using Mapster; using FastExpressionCompiler; using System.Linq.Expressio…