Linkq에서 문자열을 엔티티로 변환하는 데 문제가 있습니다. 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..