Click here to Skip to main content
15,891,529 members

Comments by Christiaan van Bergen (Top 54 by date)

Christiaan van Bergen 30-Aug-18 9:17am View    
Be aware that the ValidateProperty method might do some modifications on values before the are transferred to _selectedModel. You are executing your code on the 'value', are you sure you want to do that? Is it not that you want to execute your code on '_selectedModel' ?

And actually your code will execute everytime the value of SelectedModel will be set and not be null. This is somewhat different than it calling your code whenever the property is changed.

And yes, you might be better off creating a new handler responding to the PropertyChanged event.
Christiaan van Bergen 2-May-18 11:17am View    
Changing propertynames? NAFAIK. But, maybe if you tell us a bit more about why you would like to have this ability, we can help you find a suitable way to do just that.
Christiaan van Bergen 10-Apr-18 5:25am View    
That sounds like a complete new question. Please ask a new one and supply the necessary code and error message.
Christiaan van Bergen 5-Apr-18 5:41am View    
How long would you like an allocation to last? In other words: if user X sees the first 4 rows, but doesn't process them, how long before another user can see them and be able to process them?
Christiaan van Bergen 5-Apr-18 4:25am View    
You need to keep track of who read and who processed what. Show us your attempt in the stored procedure. What approach did you try?