Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

29
votes
2answers
1k views

DbContext ChangeTracking kills performance?

I am in the process of upgrading an application from EF1 to EF4.1 I created a DbContext and a set of POCOs using the "ADO.NET DbContext Generator" templates. When I query the generated DbContext the ...
13
votes
6answers
760 views

What is the best architecture for tracking field changes on objects?

We have a web application that is built on top of a SQL database. Several different types of objects can have comments added to them, and some of these objects need field-level tracking, similar to ...
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 ...
7
votes
1answer
627 views

Change Data Capture or Change Tracking - Same as Traditional Audit Trail Table?

Before I delve into the abyss of Microsoft documentation any deeper, I'd like to know if someone experienced with Change Data Capture and Change Tracking know if one or both of these can be used to ...
6
votes
3answers
1k views

Entitity Framework: Change tracking in SOA with POCO approach

In our layered application, we are accessing database via WCF calls. We are creating and disposing contexts per request. Also we are using POCO approach. My question is, in pure POCO model (completely ...
5
votes
2answers
670 views

Advice on Change Tracking in Sql Server 2008

My client is looking for a way to do a full audit trails (full view of historical data on all tables) on the application. Other than using the old fashioned way of having table copies or storing ...
4
votes
2answers
196 views

What's the best practice for setting last modified and who modified using NHibernate?

In my application I have a situation where we need to capture the when a record was created and modified and what user performed those actions. So I might have an object something like: public class ...
3
votes
2answers
853 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
257 views

Crippled performance when inserting to fulltext-index table on Sql Server 2005

I'm trying to a big insert of records into a table that is fulltext indexed. I have change tracking set to auto. The records are inserted from another table, in numbers typically about 50,000 at a ...
3
votes
1answer
719 views

Retention period in SQL Server 2008 Change Tracking

I'm a little worried about the default retention period in SQL Server 2008 Change Tracking (which is 2 days). Is it a good idea to set this period to eg. 100 years and turn auto cleanup off or will ...
3
votes
4answers
448 views

Patterns for implementing field change tracking

For one of my recent projects, I had to implement field change tracking. So anytime the user changed a value of a field, the change was recorded in order to allow full auditing of changes. In the ...
3
votes
3answers
248 views

What is the best way to transparently log changes to objects when using LINQ-to-SQL?

I keep track of all changes that are made to objects so that the user can view and rollback to any previous version of any item in the database. The history database table looks like this: Item ...
3
votes
1answer
587 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
1answer
43 views

Stored Procedure / CHANGETABLE function slow with parameters, fast with literal

I'm using Change Tracking in SQL2008 R2 and seeing a very odd behaviour when trying to determine rows affected in a batch, a stored proc takes ~30 seconds to run when using a parameter value, but when ...
2
votes
1answer
173 views

Entity Framework 4.1+ many-to-many relationships change tracking

How can I detect changes of ICollection<> properties (many-to-many relationships)? public class Company { ... public virtual ICollection<Employee> Employees { get; set; } } using ...
2
votes
1answer
116 views

SQL Server 2008 Linked Server and CONTEXT_INFO

I'm trying to use the SQL Server 2008 Change Tracking feature. Once the feature is enabled, you can make use of the CHANGETABLE(... function to query the change tracking history that is kept ...
2
votes
3answers
88 views

How do I compress files by only using tracked changes?

I'm trying to keep files in sync over network. Instead of transferring the whole file on each change, I'd like to find and compress the changed parts and transfer only those, very similar to e.g. ...
2
votes
2answers
366 views

C# and ASP.NET custom property attributes and determining if properties changed

I am working on a project where we want to keep a history of a particular object. On save I want a method on the object that will determine if it has changed so that I can call a method to save its ...
2
votes
2answers
598 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 ...
2
votes
1answer
142 views

Linq to SQL: Ammend command before submission to database

Is there a hook somewhere within Linq to SQL that would allow me to manually modify a command before it is sent to the database? Specifically, I am trying to introduce the WITH ...
2
votes
3answers
138 views

Preserving old data changed by user

I have a users table that has the following fields: userid, phone, and address. Since this is user data, I'm letting the user change them whenever he wants. Problem is I'd like to keep track of those ...
2
votes
1answer
729 views

Does SQL 2008 Express supports Change Tracking

Due to the lack of documentation for this on MSDN, I am forced to ask here. Does the Express version support the same Change Tracking Feature(s) as the other editions does? Thanks leppie
1
vote
1answer
18 views

Change Data Capture for several tables

SQL Server 2008. Is it possible to create Change Data Capture (or Change Tracking) for several related tabled in a db? For example many-to-many relation. How it will look like?
1
vote
1answer
22 views

Strategies for embedding change tracking in a structured data document format

When designing a specialized structured-data document format (perhaps upon XML): part of the requirements for this document format are that it accommodates, in a metadata section, a history of ...
1
vote
1answer
40 views

Change Tracking View Model: When/How to “Start Tracking”?

I have need of a view model that tracks changes so the user can see things visually change in response to edits and rollback portions. Right now, I "turn on" change tracking as the last step in the ...
1
vote
1answer
40 views

monitoring file changes in racket (like tail -f)

I would like to implement a "tail -f" like behavior in Racket. That is, I would like to read from a file, and when I hit the end, be able making something like a "blocking" (read-line file), that ...
1
vote
0answers
36 views

Why are changesets missing from my Track Changeset view

I'm really hoping that someone is going to be able to help us out here... Imagine the following branch hierarchy: Main +--> Dev +--> Project 1 | | | +--> Project 2 ...
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
1answer
218 views

EF 4.1 Code First - Determine What Properties Have Changed

I'm using Entity Framework 4.1 Code First. Is there a built-in way to get a list of what properties have changed since the entity was loaded from the database? I know code first detects that an object ...
1
vote
2answers
70 views

Why do I need to tell git I've removed a file?

I'm building a historical record of development into git from saved zip files. I'm happy about the need to git add . files to the staging area so that the selected files are committed. So far so good. ...
1
vote
2answers
131 views

Getting the real State of SelfTracking Entities, including Navigation Properties

I would like to change the display of objects if they have unsaved changes. I thought I could just use ChangeTracker.State, but that doesn't change to Modified if I change a Navigation Property. For ...
1
vote
1answer
2k views

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 its original in-memory copy of the object and these changed values are not reflected in the ...
1
vote
1answer
993 views

Entity Framework Change Tracking API and reference entries

Looking to write generic Audit code on my DbContext subclass. foreach (var entry in this.ChangeTracker.Entries<MyClass>()) { if (entry.State == EntityState.Modified) { var ...
1
vote
2answers
277 views

Best tool to keep track of code changes in Visual Studio?

I've just released my application to the public, and I'm working on an updated version, but I really think I should keep track of ALL the code changes. In case some functionality suddenly starts ...
1
vote
0answers
79 views

Master Viewer for Change Data Capture

Change Data Capture in SQL Server 2008 Enterprise Edition looks great. It captures all changes which is what we need and it will save us from custom coding this. A couple other things would go a ...
1
vote
2answers
332 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
0answers
128 views

How to create a temporal object model with Nhibernate

I have an object model that design a graph between entities. Each entity has two DateTime properties ValidFrom and ValidTo because every change in the entity must create a copy of the entity with ...
1
vote
2answers
134 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 ...
1
vote
1answer
95 views

Will creating a nonclustered index break change tracking on my database (SQL Server 2008)?

I have been investigating some performance issues with my database (SQL Server 2008). SQL Management studio suggested that I use this code to add a nonclustered index which will decrease processing ...
1
vote
2answers
516 views

Business objects synchronization between WCF services

I am moving my architecture from coupled one to SOA (WCF) loosely coupled. I have several services which communicate with each others. How would you synchronize the business instances between the ...
1
vote
2answers
983 views

Using NHibernate to determine which fields have been updated (for validation purposes) before persisting

Prior to persisting updates to my business entities, I need to perform validation checks to determine which properties have been changed. For example, certain fields can only be updated when the ...
1
vote
4answers
3k views

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 a plain text-file (version controlled via SVN) in which we manually add SQL statements when ...
0
votes
0answers
28 views

Database Tracking Changes

I'm using a webservice application connected with a SQLServer 2008 database that sends data to clients using tracking changes that is a powerful tool that leverages me to manage that complexity. ...
0
votes
1answer
15 views

Manual “version tracker” for our data processing

We have a database system that processes data from source files into some outputs. This "process" is continuously being updated, enhanced, cleaned and of course executed by a number of people around ...
0
votes
1answer
26 views

SSIS or Sync Framework with Change Tracking

Until now, I have worked primarily with LAMP applications, but have a project in which I need to set up two-way syncing between two SQL 2008 servers (one is web-based, the other is inside a firewall). ...
0
votes
1answer
59 views

Saving changes to an object graph in NHibernate after mapping from DTO to domain object

I have the following layers in my application which I am currently designing: MSSQL < NHibernate < Repository < WCF < Javascript On load of its hosting web page (EditOrder.aspx?id=104), ...
0
votes
0answers
27 views

Need help on SQL Server change tracking::how can we avoid database alias with change tracking?

I need help on SQL Server change tracking:: how can we avoid database alias with change tracking? Scenario: SQL Server instance DEVServer1.MyDatabase.MyTable – change tracking on When this ...
0
votes
2answers
65 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 ...

1 2