hi all,
I want to remove an item as follows
MyList.Where(p => p.Id == idFK).FirstOrDefault().MyListChildren.RemoveAll(ch=>ch.Id==idChild);
but it's not working, the item is there but it's not removed from list it's returning false
Go to the complete details ...