0
votes
1answer
153 views
How do I make IEditableObject.EndEdit atomic?
If I have an Address class that implements IEditableObject, I might have EndEdit implementation like this:
public void EndEdit()
{
// BeginEdit would have set _editInProgress and save to *Editing …
1
vote
1answer
71 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 …
1
vote
1answer
369 views
Read-only DataGridView and IEditableObject
Good evening
I've got a little problem with my DataGridView in a .NET Windows Forms project. The grid is read-only and bound to a sortable BindingList<T> which contains custom business objects. …
0
votes
2answers
256 views
How do I make IEditableObject.EndEdit atomic?
If I have an Address object which implements IEditableObject, I might have EndEdit implementation like this:
public void EndEdit()
{
// BeginEdit would set _editInProgress and update *Editing …
