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);

link|improve this question

40% accept rate
It is not clear where your historyObject comes from. Is retrieved by the same client as your project? – GertArnold Aug 2 '11 at 20:30
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.