using NCC;
using NCC.Dependency;
using NCC.Reflection;
using System.Linq;
using System.Reflection;
namespace Microsoft.Extensions.DependencyInjection
{
///
/// 映射拓展类
///
[SuppressSniffer]
public static class MapperServiceCollectionExtensions
{
///
/// 添加对象映射
///
/// 服务集合
///
public static IServiceCollection AddObjectMapper(this IServiceCollection services)
{
// 判断是否安装了 Mapster 程序集
var mapperAssembly = App.Assemblies.FirstOrDefault(u => u.GetName().Name.Equals("NCC.Mapster"));
if (mapperAssembly != null)
{
// 加载 Mapper 拓展类型和拓展方法
var objectMapperServiceCollectionExtensionsType = Reflect.GetType(mapperAssembly, $"Microsoft.Extensions.DependencyInjection.ObjectMapperServiceCollectionExtensions");
var addObjectMapperMethod = objectMapperServiceCollectionExtensionsType
.GetMethods(BindingFlags.Public | BindingFlags.Static)
.First(u => u.Name == "AddObjectMapper");
return addObjectMapperMethod.Invoke(null, new object[] { services, App.Assemblies.ToArray() }) as IServiceCollection;
}
return services;
}
}
}