Tagged Questions

10
votes
3answers
2k views

INotifyPropertyChanging and validations: when do I raise PropertyChanging?

INotifyPropertyChanged is fairly self explanatory and I think I'm clear on when to raise that one (i.e. when I've finished updating the values). If I implement INotifyPropertyChanging I'm tending to ...
3
votes
2answers
846 views

ChangeTracker Entity Framework 4.1 - Original Values of Related Objects

I have a base class that I inherit from that has two zero to many relationships with other entities: public abstract class WebObject { public WebObject() { RelatedTags = new ...
3
votes
3answers
505 views

Auditing record changes in sql server databases

Using only microsoft based technologies (MS SQL Server, C#, EAB, etc) if you needed keep the track of changes done on a record in a database which strategy would you will use? Triggers, AOP on the ...
3
votes
1answer
586 views

How can I do generic field and component-level change tracking in NHibernate?

In my application, I've got a few different types of entities that I have a requirement to do field-level change tracking on. I've googled for this and only can come up with examples on doing simple ...
2
votes
2answers
597 views

Ways to Maintain Data History in SQL Server 2008 Database

For a long time, we've wanted to create a case management system where no history is ever lost. When a change is made, we want to record that change, but have the ability to go back to any point in ...
1
vote
4answers
134 views

c# - Compare two Dictionary for know each “add” operations and each “remove” operations

I have 2 dictionnary with similaire struture Dictionary<string, List<int>> Origins and Dictionary<string, List<int>> Changes I have create Origins in the beginning. It is ...
1
vote
2answers
329 views

Tracking changes to database rows (SQL Server) [closed]

Possible Duplicate: Auditing SQL Server data changes My requirements demand for each row inserted and updated in the database to track who made the change (creator/modifier), when the ...
1
vote
2answers
133 views

Continuously updating data in application from database

I am writing an application that needs to continuously update its displayed data from a view in a database. Currently, it is periodically polling the entire data set and redisplaying it. I am changing ...
1
vote
2answers
497 views

Overriding entity caching/change-tracking behaviour in Linq to SQL

I think that perhaps the original question was too long-winded with too many unnecessary details, so this is my attempt to simplify. I am looking for a means to perform any of the actions below. I ...
0
votes
2answers
64 views

Is my understanding of IsLoaded correct?

Here is some code along with my assumptions based on playing around in LINQPad. Can anyone confirm this is how the lazy loading is working, and perhaps provide any additional insight/links so I can ...
0
votes
1answer
39 views

How to detect individual property changes for detached entities on update?

We are making use of EF change tracking in order to fire certain events. For example, if a person entity has an e-mail address change, we can send an e-mail to an administrator or something of that ...
0
votes
1answer
118 views

Field change tracking in Entity Framework

Is there a way to find out what field has been changed on my object. Sample problem : when some date field is changed and the changes are being saved custom some custom logic should be applied to ...
0
votes
2answers
198 views

Check for changes in a ASP.net form

I want to check if there have been any changes to a form on my ASP.NET webpage, What are my options? Should i check if the viewstate has changed or should create a flag in the code-behind, triggered ...
0
votes
3answers
683 views

ADO.NET Framework change tracking

i just wanted to ask if there is a way the reject all changes made to a ADO.NET Framework model with its relations? Auditing in Entity Framework describes a way the restore the original value of a ...