Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
680 views

What is meant by the term “dirty object”?

I see the term "dirty" or "dirty objects" a lot in programming. What does this mean?
4
votes
3answers
4k views

ObjectContext.Refresh()?

How to update ALL the dirty entities from the data store, and reset their changed values to the original store value? The method ObjectContext.Refresh requires as a parameter the entities to be ...
2
votes
2answers
311 views

Is there a clean way of cleaning up duplicate entries in MySQL?

In a table, I have three columns - id, name, and count. A good number of name columns are identical (due to the lack of a UNIQUE early on) and I want to fix this. However, the id column is used by ...
1
vote
1answer
169 views

How to prevent dirty write for web forums?

As a apprentice for web development, I have no clue of preventing dirty write for web forums. Is there any food for thought? Thanks in advance! I'm working on ASP.NET MVC and Entity Framework. Okay, ...
1
vote
1answer
913 views

How can I add an “IsDirty” property to a LINQ to SQL entity?

I am binding my entities to an edit form in WPF. Within a DataTemplate, I want to be able to set the background color of the root container within a DataTemplate to show it has been changed and these ...
0
votes
1answer
45 views

Rails partial updates problem with hashes

Rails ActiveRecord support partial updates and it works well most of the time, but in case we have serialized hash field AR executes update every time, even if nothing has been changed. Here example ...
0
votes
1answer
54 views

Easy way to tell if data is dirty

I am currently using databinding on a group of spark form elements and want to know if the data class I am bound to is dirty. It might be nice if spark "Form" elements would trigger a change event ...
0
votes
2answers
134 views

Does ODBC access to external tables potentially result in corruption of data or locks?

I need to get data out of SQL Server2005 tables, and into another system. My vendors says: "We don“t recommend that you go directly in the SQL and collect data, because it can result in corruption ...