我正在使用 ValueInjecter 而不是 AutoMapper。我正在尝试使用
.InjectFrom<UnflatLoopValueInjection>(model)
它可以工作,但我还想指定一些在展开操作期间要忽略的属性,例如编写如下内容:
.InjectFrom<UnflatLoopValueInjection>(new IgnoreProperties("Prop1", "Prop2"), model)
或者
.InjectFrom<UnflatLoopValueInjection>(model).IgnoreProperties("Prop1", "Prop2")
有任何想法吗?