[Solved] Printing Month Name in Linq


Rather than using ToString, try string.Format. Something like:

var query = (from e in Employees
           let month = e.BirthDate.GetValueOrDefault()
           let birthmonth = string.Format("{0:MMMM}", month)
           select birthmonth);
query.Dump();

This seems to work from my local testing, although it is not included as part of the SQL query.

0

solved Printing Month Name in Linq