我有以下方法:
public List<REP_MEDIDORDISPLAY> GetAllMedidoresDisplay()
{
return ent.TB_MEDIDOR.Select(x => new REP_MEDIDORDISPLAY
{
Data_TOI = x.Data_TOI,
Elemento = x.Elemento,
Fase = x.Fase,
KdKe = x.KD_KE,
N_Equipamento = x.Numero,
Tensao = x.Tensao,
Status = x.TB_REVISAO.Count > 0 ? "Revisão":
x.TB_CHECAGEM_INTERNA.Count > 0 ? "Checagem interna":
x.TB_MESACALIBRACAO.Count > 0 ? "Mesa de calibração":
x.TB_HIPOT.Count > 0 ? "Hipot":
x.TB_INSPECAO.Count > 0? "Inspeção" :
x.TB_AGENDAMENTO.FirstOrDefault(y => y.ID_Medidor == x.ID).Data_Agendamento.HasValue ?
--> Error here (x.TB_AGENDAMENTO.FirstOrDefault(y => y.ID_Medidor == x.ID).Data_Agendamento.Value.ToString()) :String.Empty
}).ToList<REP_MEDIDORDISPLAY>();
}
但是当我尝试将 DateTime 转换为 String 时,它会触发以下错误:
LINQ to Entities 无法识别方法“System.String ToString()”方法,并且该方法无法转换为存储表达式。
我希望你们能帮助我,我需要那个值作为字符串,我不能把它改成日期时间。