Linq com Convert do Sql Server

.NET

14/04/2013

Como eu faria esse select usando LINQ?
select COUNT(id_triagem) as total from tbl_Triagem where CONVERT(VARCHAR(10),dt_cadastro,103)= '11/04/2013'
Pjava

Pjava

Curtidas 0

Respostas

Joel Rodrigues

Joel Rodrigues

14/04/2013

Experimenta usar o ToString para converter a data para String e comparar os valores no where.
GOSTEI 0
POSTAR