I recently asked a question regarding how to Save a list with nested elements to XML but now I am trying to write the loader for the class and have run into problems with it.
I am attempting to reverse the answer given (thanks Jon).
I believe my core LINQ query is ok, it is the recursion I am struggling with. Here is my code so far (for clarity's sake I have posted the entire CPP as is)
/// <summary>
///
/// </summary>
public class ErrorType
{
List<ErrorType> _childErrors;
public String Name { get; set; }
public bool Ignore { get; set; }
public List<ErrorType> ChildErrors { get; protected set; }
}
/// <summary>
///
/// </summary>
public class ErrorList
{
public List<ErrorType> ChildErrors { get; protected set; }
/// <summary>
///
/// </summary>
/// <param name="xml"></param>
public void FilterErrors(XElement xml)
{
//Convert to ErrorList
//Write back out to XML but not writing out anything with errors
//Send XML on its way
}
/// <summary>
///
/// </summary>
/// <param name="el"></param>
/// <returns></returns>
private XElement ErrorListToXml(ErrorList el)
{
// Need to declare in advance to call within the lambda.
Func<ErrorType, XElement> recursiveGenerator = null;
recursiveGenerator = error => new XElement
(error.Name,
new XAttribute("Ignore", error.Ignore),
error.ChildErrors.Select(recursiveGenerator));
var element = new XElement
("ErrorList",
ChildErrors.Select(recursiveGenerator));
Console.WriteLine(element);
return element;
}
/// <summary>
///
/// </summary>
/// <param name="xd"></param>
/// <returns></returns>
private ErrorList FromXmlToErrorList(XElement xd)
{
//Prepare lambda
Func<ErrorType, XElement> recursiveGenerator = null;
recursiveGenerator = error => new List<ErrorType>
(error.Name,
new XAttribute("Ignore", error.Ignore),
error.ChildErrors.Select(recursiveGenerator));
List<ErrorType> typeList = (from error in xd.Descendants()
select new ErrorType
{
Name = error.Value,
Ignore = bool.Parse(error.Attribute("Ignore").Value),
ChildErrors= error.Elements().Select()
}).ToList<ErrorType>();
ErrorList el = new ErrorList();
el.ChildErrors = typeList;
return el;
}
/// <summary>
///
/// </summary>
public void Save()
{
XElement xml = ErrorListToXml(this);
xml.Save("errorlist.xml");
}
public void Load()
{
}
}
Thankyou