Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
558 views

Soft Deletes ( IsHistorical column ) with EntityFramework

I'm working with a database where the designers decided to mark every table with a IsHistorical bit column. There is no consideration for proper modeling and there is no way I can change the schema. ...
6
votes
6answers
769 views

Soft delete best practices (PHP/MySQL)

Problem In a web application dealing with products and orders, I want to maintain information and relationships between former employees (users) and the orders they handled. I want to maintain ...
4
votes
2answers
158 views

soft deleting mongoid document along with associated documents

I have 2 models, user and posts class User include Mongoid::Document include Mongoid::Paranoia references_many :posts, :autosave => true, :dependent => :destroy end class Post include ...
3
votes
2answers
1k views

Difference betwwen Nhibernate Session.Get and Session.CreateCriteria

What is the difference between Nhibernate Session.Get and Session.CreateCriteria? My story is: In our product we implemented a softDeletion by adding a Interface ISoftDeletable, each class which ...
3
votes
3answers
203 views

How can I fix this scaling issue with soft deleting items?

I have a database where most tables have a delete flag for the tables. So the system soft deletes items (so they are no longer accessible unless by admins for example) What worries me is in a few ...
2
votes
2answers
41 views

Soft Delete - Use IsDeleted flag or separate joiner table?

Should we use a flag for soft deletes, or a separate joiner table? Which is more efficient? Database is SQL Server. Background Information A while back we had a DB consultant come in and look at ...
2
votes
1answer
89 views

Soft delete and recovery (MySQL, PHP)

I need to be able to delete messages and to restore them until the page is not reloaded. So I have a field 'is_deleted' in my 'messages' table. What I want is to delete these 'deleted' records after ...
2
votes
0answers
334 views

entity framework code first soft delete

I have Entities with field DeletedAt. Those entities implement ISoftDelete. What i want is to automatically ignore all rows that have value on DeletedAt. Is it possible? one thought was ...
2
votes
3answers
579 views

CakePHP 1.3 alternative to SoftDeletable Behavior?

Does anyone know of an alternative to the SoftDeletable Behavior that is compatible with Cake 1.3.x? If there aren't any ready behaviors available, any suggestions on how I go about doing this in the ...
2
votes
1answer
162 views

rails_acts_as_paranoid to soft delete a record of a many to many relationship

Hi all I have users and messages, messages can be deleted by both receiver and sender, without affecting the each-other view. so when the sender deletes the message the receiver still sees it, hope ...
2
votes
1answer
312 views

Hibernate: how to fetch only not-logically deleted objects

Nearly every table in our database has a FK to the Auditing table which logs created, updated and deleted status (date and username). We mapped the auditing table to the Auditing class and use it ...
2
votes
1answer
240 views

Does Propel know when an object has been soft-deleted, so that child entities could still show their deleted parent?

I am soft-deleting objects in a MySQL database and using the Propel ORM. I have gotten soft-deleting to work, but at the cost of losing my enforced parent-child relationships, since the actual rows ...
2
votes
2answers
182 views

How to test soft deletion event listner without setting up NHibernate Sessions

I have overridden the default NHibernate DefaultDeleteEventListener according to this source: http://nhforge.org/blogs/nhibernate/archive/2008/09/06/soft-deletes.aspx so I have protected override ...
2
votes
4answers
975 views

Cascading Soft Delete

SQL has always had a great feature: cascading deletes. You plan it in advance and when it's time to delete something, BAM! No need to worry about all those dependent records. However, nowadays it's ...
1
vote
2answers
78 views

Soft-delete user table? Or is there another alternative?

My head's spinning from reading all the pro's & con's articles about soft-delete. But that's the only way I know to achieve this: maintain the foreign keys & user info (history data) ...
1
vote
1answer
43 views

Create new user with email as a soft deleted user

I am using ActsAsParanoid for soft deleting users.After deleting(soft) a user, my client wants to create user with same email id.But it generating unique field error since email column is unique.So my ...
1
vote
1answer
304 views

Is there a better version of somthing like acts_as_paranoid for Rails 3?

Does anyone know of a gem that both soft deletes records from a database (just flags them as deleted as opposed to is actually deleted) and... ...also when do you any type of find automatically omits ...
1
vote
0answers
281 views

Hibernate: Overwrite sql-delete with inheritace

I have an entity A and B extends A and try to have a soft-delete with joined inheritance strategy. @Entity @Inheritance(strategy = InheritanceType.JOINED) @SQLDelete("UPDATE A SET deleted = 1 WHERE ...
1
vote
3answers
177 views

CakePHP soft deleted data still showing up in model associations

I am using the SoftDeletableBehavior for my addresses model. This sets it so when you delete an address it doesnt really delete it, instead sets a deleted column in the database to 1. This also ...
1
vote
2answers
483 views

LINQ to SQL: filter nested objects with soft deletes

I'm using soft deleting in my database (IsDeleted field). I'm actively using LoadWith and AssociateWith methods to retrieve and filter nested records. The thing is AssociateWith only works with ...
1
vote
0answers
633 views

Soft delete in cascade in NHibernate

I try to make a soft delete by implementing the DeleteEvent Listener public class MyDeleteEventListener : DefaultDeleteEventListener { protected override void DeleteEntity(IEventSource session, ...
1
vote
4answers
1k views

PHP Doctrine SoftDelete - Include deleted records?

If I have one of my PHP Doctrine objects act as a SoftDelete, is it possible to include deleted items in the results of certain queries? What I'm looking for is something like this... $q = ...
1
vote
1answer
465 views

Same Table Django ORM Soft Delete Method Okay?

I'm using the following setup to implement soft deletes in Django. I'm not very familiar with Django under the hood so I'd appreciate any feedback on gotchas I might encounter. I'm particular ...
0
votes
2answers
97 views

Filter out Soft Deletes from DbContext Set()

How can I filter the IsSoftDeleted items out of this DbSet? var type = GetTypeFromString("Whatever"); var whatevers = Set(type); Method public dynamic Set(Type type) { var set = ...
0
votes
3answers
110 views

Implementing soft delete with minimal impact on performance and code

There are some similar questions on the topic, but they are not really helping me. I want to implement a soft delete feature like on StackOverflow, where items are not really deleted, but just ...
0
votes
2answers
140 views

Problem with lazy load soft deleted entities with Nhibernate

Hello everyone I have a problem I'll try to describe shortly In our application we use Nhibernate as ORM, and Fluent Nhibernate for mapping, and was implemented soft delete for entities that mean ...
0
votes
2answers
63 views

nhibernate softdelete where override

Ok, In my solution I have implemented softdeletes by setting IsDeleted to true instead of deleting an entity. I also added the Where IsDeleted=false in the class Mapings. Now all my select queries ...
0
votes
1answer
109 views

nhibernate event listener registration

I am trying to override the delete event listener with a custom soft delete listener I wrote; however, I am having issues with the registration process. I have the following in my web.config: ...
0
votes
0answers
105 views

Adding “Soft Delete” to an existing system

I have a system which contains a lot of stored procedures, functions which run of TableA, for example. We need a way of being able to delete these orders, but keeping them on record. One option we've ...
0
votes
2answers
75 views

WPF: Soft deletes and binding?

I have custom objects which implement INotifyProperyChanged and now I'm wondering if it is possible to implement soft delete which would play nicely with binding? Each object would have a IsDeleted ...
0
votes
1answer
117 views

Any benefit to deleting a soft-deleted row in MySQL?

I have a table in MySQL dB that records when a person clicks on certain navigation tabs. Each time it will soft-delete the last entry and insert a new one. The reason for soft-delete is for analytics ...