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 # !!!