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 लचीला है, im सी # की सख्ती के लिए इस्तेमाल होने में असमर्थ है !!!