我正在尝试使用反射动态地为类的嵌套属性设置一个值。谁能帮我做到这一点。
我正在上课Region
,如下所示。
public class Region
{
public int id;
public string name;
public Country CountryInfo;
}
public class Country
{
public int id;
public string name;
}
我有一个 Oracle 数据阅读器来提供来自 Ref 游标的值。
这会给我
Id,name,Country_id,Country_name
我可以通过下面将值分配给 Region.Id、Region.Name。
FieldName="id"
prop = objItem.GetType().GetProperty(FieldName, BindingFlags.Public | BindingFlags.Instance);
prop.SetValue(objItem, Utility.ToLong(reader_new[ResultName]), null);
对于嵌套属性,我可以通过读取字段名创建一个实例来为下面的赋值。
FieldName="CountryInfo.id"
if (FieldName.Contains('.'))
{
Object NestedObject = objItem.GetType().GetProperty(Utility.Trim(FieldName.Split('.')[0]), BindingFlags.Public | BindingFlags.Instance);
//getting the Type of NestedObject
Type NestedObjectType = NestedObject.GetType();
//Creating Instance
Object Nested = Activator.CreateInstance(typeNew);
//Getting the nested Property
PropertyInfo nestedpropinfo = objItem.GetType().GetProperty(Utility.Trim(FieldName.Split('.')[0]), BindingFlags.Public | BindingFlags.Instance);
PropertyInfo[] nestedpropertyInfoArray = nestedpropinfo.PropertyType.GetProperties();
prop = nestedpropertyInfoArray.Where(p => p.Name == Utility.Trim(FieldName.Split('.')[1])).SingleOrDefault();
prop.SetValue(Nested, Utility.ToLong(reader_new[ResultName]), null);
Nestedprop = objItem.GetType().GetProperty(Utility.Trim(FieldName.Split('.')[0]), BindingFlags.Public | BindingFlags.Instance);
Nestedprop.SetValue(objItem, Nested, null);
}
上面的赋值给Country.Id
.
但是由于我每次都在创建实例,因此Country.Id
如果我选择 Next Country.Name,我将无法获得先前的值。
谁能告诉 can 为objItem(that is Region).Country.Id
and赋值objItem.Country.Name
。这意味着如何为嵌套属性分配值,而不是每次都创建实例和分配。
提前致谢。!