我正在尝试编写一个方法,该方法使用反射来获取属性并在遍历XElement时设置它们的值:
假设我有一个这样的类,它只提供我要解析的XML值:
class XMLController
{
public string XML
{
get{
return @"<FieldGroup name='People' count='20'>
<Fields>
<Field Name='Jon' LastName='McFly'/>
<Field Name='Michael' LastName='Jackson'/>
</Fields>
</FieldGroup>";
}
}
}
这就是我的对象的样子:
class FieldGroup
{
public string Name {get;set;}
public string Count {get;set;}
public IEnumerable<Field> Fields {get;set;}
}
class Field
{
public string Name {get;set;}
public string LastName {get;set;}
}
映射器方法遍历XElement
,因为节点名称与对象匹配,我认为这对于帮助不多,但我还没有提出真正有用的东西。我不想传递类型,但是,该方法几乎可以使用相同格式传入的每个XML。
所有它都知道XML节点和属性是匹配的名称。
这就是我所做的,但没有真正发挥作用:
class XMLObjectMapper
{
public T Map<T>(XElement element) where T: class, new()
{
T entity = (T) Activator.CreateInstance(typeof(T));
if(element.HasAttributes)
{
MapXMLAttributesToObject<T>(element,entity);
}
if(element.HasElements)
{
foreach (var childElement in element.Elements())
{
//if the child element has child elements as well, we know this is a collection.
if(childElement.HasElements)
{
var property = GetProperty<T>(childElement.Name.LocalName);
property.SetValue(entity,new List<property.PropertyType>());
Map<T>(childElement);
}
else
{
var property = GetProperty<T>(childElement.Name.LocalName);
var type = Activator.CreateInstance(property.PropertyType);
type.Dump();
}
}
}
return entity;
}
private void MapXMLAttributesToObject<T>(XElement element, T entity)
{
foreach(XAttribute attribute in element.Attributes())
{
var property = GetProperty<T>(attribute.Name.LocalName);
property.SetValue(entity,attribute.Value);
}
}
private PropertyInfo GetProperty<T>(string propertyName)
{
return typeof(T).GetProperty(propertyName,BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance);
}
}
答案 0 :(得分:3)
你走在正确的轨道上,但正如你所注意到的,你有一些错误。
以下代码段无法编译,因为您无法使用值(property.PropertyType
)代替类型名称。 C#是一种静态类型语言,因此必须在编译时知道类型而不是变量:
new List<property.PropertyType>()
但是,如果使用反射,则可以在运行时选择类型。我们可以这样做:
Activator.CreateInstance(typeof(List<>).MakeGenericType(collectionElementType))
您遇到的另一个问题是您不能只是致电Map<T>(childElement)
。首先,T不是正确的类型 - 它是父元素的类型,而不是孩子的类型。其次,子实际上是一个集合,Map<T>
不知道如何处理集合,只知道单个对象。我们必须循环遍历子元素,映射到每个元素(使用集合中元素的类型调用Map<T>
- 在您的示例中为Map<Field
),然后将它们全部添加到采集。我已经制作了适用的Map<T>
的新版本:
public T Map<T>(XElement element) where T : class, new()
{
T entity = (T)Activator.CreateInstance(typeof(T));
if (element.HasAttributes)
{
MapXMLAttributesToObject<T>(element, entity);
}
if (element.HasElements)
{
foreach (var childElement in element.Elements())
{
var property = GetProperty<T>(childElement.Name.LocalName);
// If the child element has child elements as well, we know this is a collection.
if (childElement.HasElements)
{
// Assume collections are of type IEnumerable<T> or List<T>
var collectionElementType = property.PropertyType.GetGenericArguments()[0];
// var collectionValue = new List<collectionElementType>()
var collectionValue = Activator.CreateInstance(typeof(List<>).MakeGenericType(collectionElementType));
foreach (var grandchildElement in childElement.Elements())
{
// var collectionElement = this.Map<collectionElementType>(grandchildElement);
var collectionElement = this.GetType().GetMethod("Map").MakeGenericMethod(collectionElementType).Invoke(this, new object[] { grandchildElement });
collectionValue.GetType().GetMethod("Add").Invoke(collectionValue, new object[] { collectionElement });
}
property.SetValue(entity, collectionValue, null);
}
else
{
// I'm not sure what this should do -- this case doesn't happen in your example.
throw new NotImplementedException();
}
}
}
return entity;
}
它肯定需要更多的错误处理,我假设你想在我抛出NotImplementedException
的情况下做一些有用的事情。但是,它适用于您的样本。