Top "Change-tracking" questions

Change tracking is the process of recording changes made to data as they are made.

Turn off EF change tracking for any instance of the context

I have a context to a read-only database for reporting and I am writing lots of code, like this: using (…

c# entity-framework entity-framework-4.1 change-tracking
Global setting for AsNoTracking()?

Originally I believed that context.Configuration.AutoDetectChangesEnabled = false; would disable change tracking. But no. Currently I need to use AsNoTracking() …

c# .net entity-framework change-tracking
How change tracking works in Entity Framework

Given the following code, how does EF/DbContext knows about the change made to the customer object: class Program { static …

c# entity-framework-4 dbcontext change-tracking
Database Design with Change History

I am looking to design a database that keeps track of every set of changes so that I can refer …

sql postgresql change-tracking
How to make Excel a potent relational data source for manual entry?

I am using Excel to store data kind of as a relational database for data that will be entered manually (…

excel foreign-key-relationship change-tracking data-entry qlikview
Use EF changetracker to manually get set of changes?

If I load up an entity, make some changes, and then go to save it, EF generates an update statement. …

c# entity-framework change-tracking
MySQL database change tracking

What tools are you using to track changes in your MySQL database? Currently I'm in a project where we use …

mysql database change-tracking
How do I turn off change tracking at the DbContext level in EF 4.1 RC?

I've encountered what seems to be a common problem: I am updating values in my database, but EF is using …

c# entity-framework ef-code-first entity-framework-4.1 change-tracking
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 …

.net entity-framework-4.1 ef-code-first change-tracking