ive got problem with storing array item inside arrya item this is mine scenario(its example not all variables inside):
public class Contact
{
public string Description { get; set; }
public IList Projects { get; set; }
}
public class Project
{
public string Description { get; set; }
public IList ProjectHistories { get; set; }
}
public class ProjestHistory
{
public string Description
public DateTime Date { get; set; }
}
it works fine when i create new Contact and add to the list Project, i can update both Contact and Project, but the problem is when i try to add ProjectHistory into Project, then Project just duplicates here is how i update it:
using (IObjectContainer client = DBServer.server.OpenClient())
{
var project = (from Project p in client
where p.Id == Id
select p).FirstOrDefault();
project.ProjectHistories.Add(historyObject);
project.Description = Description;
client.Store(project);
}
i can update without ProjectHistories and then it works, but when i add something to ILlist it duplicates. Ive got in config CascadeOnUpdate(true);
historyObjectcomes from. Is retrieved by the sameclientas yourproject? – GertArnold Aug 2 '11 at 20:30