Linq 中是否有任何内置函数可以在使用 LINQPAD 时打印月份名称?
我想在以下场景中打印月份名称
var query = from e in Employees
let month=e.BirthDate.GetValueOrDefault()
let birthmonth=month.ToString("MMMM")
select birthmonth;
query.Dump();
当我运行它时,它会抛出 NotSupportedException。如何在 Linq to Sql 中打印月份名称?