Abp.AutoMapper扩展 --static class AutoMapExtensions
Posted spinoza
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Abp.AutoMapper扩展 --static class AutoMapExtensions相关的知识,希望对你有一定的参考价值。
// 摘要:
// Converts an object to another using AutoMapper library. Creates a new object
// of TDestination. There must be a mapping between objects before calling this
// method.
// **利用AutoMapper将一个实体转换为另一个实体.创建一个新的TDestination的对象。在调用方法之前必须有一个映射
// 参数:
// source:
// Source object
// **原对象实体
// 类型参数:
// TDestination:
// Type of the destination object
// **目标对象类型
public static TDestination MapTo<TDestination>(this object source);
// 摘要:
// Execute a mapping from the source object to the existing destination object There
// must be a mapping between objects before calling this method.
// 执行一个从原类型到目标类型的映射
// 参数:
// source:
// Source object
//
// destination:
// Destination object
//
// 类型参数:
// TSource:
// Source type
//
// TDestination:
// Destination type
public static TDestination MapTo<TSource, TDestination>(this TSource source, TDestination destination);
以上是关于Abp.AutoMapper扩展 --static class AutoMapExtensions的主要内容,如果未能解决你的问题,请参考以下文章
Shell 扩展:C/C++ 运行时 DLL 的静态链接与动态链接
(转)错误: 在类中找不到 main 方法, 请将 main 方法定义为:public static void main(String[] args)否则 JavaFX 应用程序类必须扩展javafx
(转)错误: 在类中找不到 main 方法, 请将 main 方法定义为:public static void main(String[] args)否则 JavaFX 应用程序类必须扩展javafx