What's the best approach to this situation:
I have a large list that contains a DateTime property in each object and I need to add the offset and modify the date manually. I wish I can do it in LINQ like so:
select new VM { DateTime = history.DateTime == null ? null : history.DateTime.AddHours(offset) }
My only option is to loop through? I'm not the one that adds the data to the db so I can't add the offset on insert.