Comment convertir un int en une chaîne de caractères ? Aucune des méthodes suivantes ne fonctionne :
from s in ctx.Services
where s.Code.ToString().StartsWith("1")
select s
from s in ctx.Services
where Convert.ToString(s.Code).StartsWith("1")
select s
from s in ctx.Services
where ((string)s.Code).ToString().StartsWith("1")
select s
EDIT
L'erreur que je reçois est la suivante :
LINQ to Entities does not recognize the method 'System.String ToString()' method, and this method cannot be translated into a store expression