Hi,
Code which happily added x amount of days to a date, now fails to do so after moving from VS express to VS 2010.
using System.Data.Objects;
var s = (from i in context.Itineraries etc etc....)
select new CruiseCalendarDay {
Date = (DateTime)EntityFunctions.AddDays(isd.Date, id.Day),.....etc.
}
It builds ok , but when the query is run I get the following error message
{"The function is no ...
Go to the complete details ...