var record = ( from x in db.TableName where x.Id == 12345 select x ) .Single(); record.DateUpdated = DateTime.Now; db.SubmitChanges();
希望能帮助到你 :)