convert int to string in linq query c# code example
Example: convert int to string in linq query c#
var items = from c in contacts
select new ListItem
{
Value = SqlFunctions.StringConvert((double)c.ContactId).Trim(),
Text = c.Name
};