LINQ to Entity Framework 4.0. SQL Server.
I\'m trying to return a list of objects and one of the columns in the database is varchar(255) and contains dates. I\'m tryin
You want DateTime.Parse(c.value) which will take a string containing a date and create a DateTime object out of it.