1
I can’t get my father table to include the dependent:
var medicos = TabelaMedico.Include(m => m.Especialidade).ToList();
Displays the following error message:
CS1660: Cannot Convert lambda Expression to type 'string' because it is not a delegate type
Doesn’t it work because? Does it make a mistake? Doesn’t the data come? Please be more specific.
– Jéf Bueno
Displays this message "CS1660 Cannot Convert lambda Expression to type 'string' because it is not a delegate type"
– Mr.GMSOFT