new ステートメント内で foreach ループを使用して、クラス DtoReport のプロパティであるプロパティ subdecision_typex_value を割り当てたいと思います。
それはどういうわけか可能ですか?それは理にかなっていますか?
public DtoReport Get(Report repResp)
return new DtoReport()
{
archivingId = repResp.archivingId.ToString(),
dateCreated = DateTime.Now,
//I'D LIKE TO DO IT THAT WAY IS IT POSSIBLE SOMEHOW ?
foreach(Subdecision d in repResp.decisionMatrix.subdecisions){
if(d.type == "SOME VALUE"){
//Dynamically assign DtoReport subdecision_typex_value Property
subdecision_typex_value = d.value
}
}
//END
anotherProperty = repResp.AnotherProperty
}