/ Published in: C#
Expand |
Embed | Plain Text
var query = from m in db.TeamMembers orderby m.Name select new { Photo = m.Photo ?? "default.jpg", Modified = String.Format("{0:M/d/yyyy}", m.Modified), Created = String.Format("{0:M/d/yyyy}", m.Created) };
You need to login to post a comment.
