4

我正在开发一个使用 AutoMapper 的 Xamarin 项目。当链接设置为“仅链接框架 SDK”时,初始化地图时出现以下错误

System.ArgumentNullException:值不能为空。参数名称:方​​法

例外情况不多,调用堆栈也不例外

AutoMapper.Mappers.ConvertMapper.MapExpression
AutoMapper.Execution.TypeMapPlanBuilder.ObjectMapperExpression
AutoMapper.Execution.TypeMapPlanBuilder.MapExpression
AutoMapper.Mappers.NullableSourceMapper.MapExpression
AutoMapper.Execution.TypeMapPlanBuilder.ObjectMapperExpression
AutoMapper.Execution.TypeMapPlanBuilder.MapExpression
AutoMapper.Execution.TypeMapPlanBuilder.MapExpression
AutoMapper .Execution.TypeMapPlanBuilder.CreatePropertyMapFunc
AutoMapper.Execution.TypeMapPlanBuilder.CreatePropertyMapFunc
AutoMapper.Execution.TypeMapPlanBuilder.TryPropertyMap
AutoMapper.Execution.TypeMapPlanBuilder.CreateAssignmentFunc
AutoMapper.Execution.TypeMapPlanBuilder.CreateMapperLambda
AutoMapper.TypeMap.Seal AutoMapper.MapperConfiguration.Seal
AutoMapper.MapperConfiguration..ctor
AutoMapper.MapperConfiguration..ctor AutoMapper.Mapper.Initialize

最初的阅读表明链接器只是从我们正在使用的某个类中删除一些属性或确实方法。

但是,在注释掉大多数映射然后一次重新引入它们之后,我发现这个类当前导致了错误。

[Preserve]
internal class ItemBase : CareRecordItemBase
{
      [Preserve]
      public string Topic { get; set; }
    
      [Preserve]
      public string InPractice { get; set; }
    
      [Preserve]
      public string PrivateVal { get; set; }
}

如果我注释掉该InPractice属性,则不会引发异常。这对我来说毫无意义。谁能解释为什么这可能是一个问题?

有没有更好的方法来诊断这些问题?

4

2 回答 2

6

根据 Pat 的回答:

  1. 添加一个 XML 文件LinkDescription.xml,您可以随意命名。
  2. 添加此代码:
<linker> 
    <assembly fullname="mscorlib">
        <type fullname="System.Convert" preserve="All" />
    </assembly>
</linker>
  1. 将文件的构建操作设置为LinkDescription
于 2018-11-29T11:10:45.600 回答
3

请参阅 AutoMapper 作者 Lucian Bargaoanu 的评论。我需要包含一个将配置添加到链接过程的 xml 文件。

Lucian 指的是这个 Automapper 问题,https://github.com/AutoMapper/AutoMapper/issues/2272

另见

自定义链接器配置

于 2018-06-29T10:09:27.613 回答