S
shapper
Hello,
I need to set the property IsActive = false for all records but one
which has FileID = id
database.Files.Select(p => p.FileID != id)
I am selecting the records ... I just don't know how to change the
IsActive of all this records to false.
If possible using lambda.
Thanks,
Miguel
I need to set the property IsActive = false for all records but one
which has FileID = id
database.Files.Select(p => p.FileID != id)
I am selecting the records ... I just don't know how to change the
IsActive of all this records to false.
If possible using lambda.
Thanks,
Miguel