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
};
とにかく私はこれを達成することができますか?VB.NET では問題なく最初のスニペットを使用できます。VB は柔軟で、C# の厳密さに慣れることができません!!!