Questions tagged [soft-delete]

Soft delete is to delete data from database in a way in which it can be recovered in the future rather than permanently deleting the data,

Soft delete, in database terminology, means to delete data from a database by generally marking it with flag like isDeleted rather than permanently deleting data. Soft delete helps in preserving data such that it can be recovered in the future rather than actually deleting it. Soft deleting also prevents accidental data losses.

367 questions
-1
votes
1 answer

Soft delete on many to many relationships

The only question that I found most similar to my question is here, But It didn't answer my question. I have this model: public class Profile { public int Id { get; set; } public string Name { get; set; } public bool IsActive { get; set;…
Rathma
  • 1,196
  • 2
  • 33
  • 65
-1
votes
1 answer

How to allow soft-deleted email to be reused again with ASP.NET UserIdentity

I have an ASP.NET application where users are authenticated using the UserIdentity class. Recently, I have just implemented a soft-delete feature by adding 'ActiveStatus' to the ApplicationUser class. The issue arises where the user cannot…
Enson
  • 71
  • 1
  • 1
  • 5
-1
votes
2 answers

Soft delete on table

I just started using soft delete and I am not really sure how to do it, I am just following someone example and is still unsure how to do a proper soft delete. All I want is to delete the personal_info table but I keep on getting a no error message…
blastme
  • 391
  • 7
  • 19
  • 37
-1
votes
1 answer

Different views for different users

Say I have a database with 3 tables: Stream, Tag and Post Stream has one tag. Multiple streams can have the same tag. Stream is owned by one user. A tag has many posts. Different tags can have the same post. Each user that opens his stream gets…
tamir
  • 3,207
  • 2
  • 33
  • 51
-2
votes
0 answers

Customize Softdelete column and values in Laravel

I'm working on a project that a register is considered deleted when the column DELETED = 1 and not deleted when the column DELETED is null. How to make softdelete work on my project so I don't have to manually do it everywhere?
-2
votes
1 answer

How to do soft delete in feathersJs using mongoose for mongoDb database

I want to implement the soft delete feature in the project I am working on currently. The project is using feathersjs and mongoose. If anybody is having any idea how to implement it inside feathers hooks
Sibtain Wani
  • 89
  • 1
  • 9
-4
votes
1 answer

What is mean soft delete integration?

As my client asked me to integrate soft delete on his web application. But I have never done this, please help me out.
Ramesh T
  • 57
  • 1
  • 1
  • 10
1 2 3
24
25