Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 156169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T10:17:04+00:00 2026-05-11T10:17:04+00:00

I’ve made a small example with a Person class, which contains a list of

  • 0

I’ve made a small example with a ‘Person’ class, which contains a list of Pets. In addition, there’se a simple repository that can save / delete / select Person objects. Now I put a form view (or details view) on my form, choose an object data source which points to my repository. So far it works perfectly, I can create, update, delete people… I can even show my collection of pets in an item template in my view.

But when I am updating a person, my collection of pets is cleared! When I look at the ‘Updating’ event of the object binding source, e.InputParameters contains all my values that I have entered, but the pets collection always contains 0 items. When I look at the Selected event of the object binding source, my e.ReturnValue contains my selected person including pets, which is correct. Any ideas?

Here is my person class and my repository. This is a small sample of what is actually a linq2hibernate project.

public class Person  {      public int ID { get; set; }      public string Name { get; set; }      public int Age { get; set; }       public List<Pet> Pets { get; set; }       public Person()      {          Pets = new List<Pet>();      }  }  [DataObject]  public class Repository  {      List<Person> people = new List<Person>();       public Repository()      {           //Code to load the person list      }       public Person FindByID(int ID)      {          return people.SingleOrDefault(x => x.ID == ID);      }       public List<Person> FindAll()      {                                  return people;      }               public void Save(Person person)      {         // code to save a person         // Here you can see a person's pets collection is always empty          // when this method is called by the objectdatasource      }       public void Delete(Person person)      {      }              public void Insert(Person person)      {      }  } 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T10:17:04+00:00Added an answer on May 11, 2026 at 10:17 am

    I believe it is by design. The object that gets passed to the Save method is not the same object you are editing. The object binding source creates a new instance of a Person when calling the Save method. It assigns properties using reflection and only those that are set in the keys/values collections. I.e. those that your DetailsView has data bound, specifically from DetailsViewUpdatedEventArgs.Keys, NewValues, and OldValues.

    That makes sense, since you are not updating a Pets collection, only Person record. I suggest, inside the Save you call your FindByID and reassign values from the passed person — the Pets will stay the same.

    I think it may be possible to have Pets as well. If I understand correctly, it would require to write a custom serializer and mark the Person as Serializable. I haven’t tried it though.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 130k
  • Answers 130k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer No. If you use prepared statements, escaping is done for… May 12, 2026 at 6:03 am
  • Editorial Team
    Editorial Team added an answer With an OpenStruct, you can arbitrarily create attributes. A Struct,… May 12, 2026 at 6:03 am
  • Editorial Team
    Editorial Team added an answer Kind of a hack but: Something like this will get… May 12, 2026 at 6:03 am

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.