Answer the question
In order to leave comments, you need to log in
What could be the reason for reverting changes in postgresql?
ASP .NET Core project. In it I use postgresql + linq2db. Changes made to the database are canceled with varying frequency. Approximately this is how all changes in the database are made. What could be the reason?
using (Context db = new Context ())
{
db.SomeTable.Where(x => x.id == 1)
.Set(x => x.Status, "done")
.Update();
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question