Мой объект выглядит так:
public class Template
{
public string Title {get;set;}
public string Body {get;set;}
}
xml, который хранится в /files/test.xml в веб-приложении (в корне):
<nodes>
<template name="someKey">
<node name="title">soem title</node>
<node name="body">some body text here</node>
</template>
</nodes>
Так что я могу загрузить документ как:
XDocument doc = XDocument.Load(HttpContext.Current.Server.MapPath("~/files/test.xml"));
Теперь, как бы я загрузить объект из XML? (скажем, для шаблона с именем = somekey