var items = from c in contacts
select new ListItem
{
Value = c.ContactId, //Cannot implicitly convert type 'int' (ContactId) to 'string' (Value).
Text = c.Name
};
var items = from c in contacts
select new ListItem
{
Value = c.ContactId.ToString(), //Throws exception: ToString is not supported in linq to entities.
Text = c.Name
};
Existe-t-il de toute façon que je peux y parvenir? Notez que dans VB.NET, il n'y a aucun problème, utilisez le premier extrait, cela fonctionne très bien, VB est flexible, je ne peux pas m'habituer à la rigueur de C # !!!