Tagged Questions
3
votes
1answer
236 views
What is the type of object added by IEditableCollectionView?
Adding objects with the IEditableCollectionView addNew() method is pretty decent. However I'm not sure how well it works with my generic code I have.
I have a ObservableCollection of my base class. ...
1
vote
1answer
234 views
Creating a generic method to cache an entity
I'm implementing the IEditableObject interface and I want to make a generic method that will know how to clone the object before BeginEdit().
I thought about reflection to iterate all public ...
0
votes
1answer
399 views
How to prevent CurrencyManager from calling BeginEdit()/EndEdit() methods for bound objects
I've got a form with several textboxes and one datagrid. One business entity can be bound to this form. For example, BO looks like this:
class BO : IEditableObject, INotifyPropertyChanged
{
public ...