Okay, so here's my question. I'm working with a save result from the Salesforce API, and I am learning LINQ. It may not be the best thing to use here, I don't know, but this is what I'm trying to do, just more eloquently.
BTW, here's the saveresult[] class shrunk down to definitions:
public partial class SaveResult {
private Error[] errorsField;
private string idField;
private bool successField;
[System.Xml.Serialization.XmlElementAttribute("errors")]
public Error[] errors
[System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
public string id
public bool success
}
And here's what I'm trying to do. Check for errors, return them if there are any in any of the returned save results, or return null if no errors.\
string errors = null;
foreach (SaveResult s in saved)
{
if (s.success) continue;
else
{
foreach (Error e in s.errors)
{
errors += String.Format("Errors on object: {0}. Error Code is: {1}. Error Message: {2}",
s.id,e.statusCode.ToString(),e.message);
}
}
}
So far I have:
return saved
.Select(i => i.errors
.Select(j => new { j.statusCode, j.message })
.Distinct()
.ToList()
).ToString();
I'm pretty sure I will need an anonymous function in there to evaluate for errors before I go on.
Anyway, that's it. Thanks for the help (or the links pointing me to help!)