G\'day everyone.
I\'m still learning LINQ so forgive me if this is naive. When you\'re dealing with SQL directly, you can generate update commands with conditionals
Try this :
dbEntities.tblSearchItems .Where(t => t.SearchItemId == SearchItemId) .ToList() .ForEach(t => t.isNew = false); dbEntities.SaveChanges();