Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The last two lines of this code do not work correctly -- the results are coming back from the LINQ query. I'm just not sure how to successfully bind the indicated columns in the results to the textfield and valuefield of the dropdownlist:

    protected void BindMarketCodes()
    {
        List<lkpMarketCode> mcodesList = new List<lkpMarketCode>();

        LINQOmniDataContext db = new LINQOmniDataContext();

        var mcodes = from p in db.lkpMarketCodes 
                        orderby 0
                        select p;

        mcodesList = mcodes.ToList<lkpMarketCode>();

        //bind to Country COde droplist
        dd2.DataSource = mcodesList;
        dd2.DataTextField = mcodesList[0].marketName;
        dd2.DataValueField = mcodesList[0].marketCodeID.ToString();

    }
share|improve this question

2 Answers

up vote 13 down vote accepted

See revised code below, this is untested but it should work.

   protected void BindMarketCodes()
   {    
        //bind to Country COde droplist
        dd2.DataSource = from p in (new LINQOmniDataContext()).lkpMarketCodes 
                        orderby p.marketName
                        select {p.marketCodeID, p.marketName};
        dd2.DataTextField = "marketName"
        dd2.DataValueField = "marketCodeID"

    }
share|improve this answer
way cool, works great, thx! – alchemical Feb 16 '09 at 21:54
1  
couldn't get it work until I added dd2.DataBind(); as suggested by #Andrew_Robinson – openshac Jun 8 '11 at 16:07
protected void BindMarketCodes()
{
    using(var dc = new LINQOmniDataContext())
    {
        dd2.DataSource = from p in db.lkpMarketCodes
                         orderby 0
                         select new {p.marketName, p.marketCodeID };
        dd2.DataTextField = "marketName";
        dd2.DataValueField = "marketCodeID";
        dd2.DataBind();
    }
}

// no need to use ToList()
// no need to use a temp list;
// using an anonymous type will limit the columns in your resulting SQL select
// make sure to wrap in a using block;
share|improve this answer
1  
Thanks for adding this. I like your approach better, for the reasons that you outlined. – Jim G. Aug 12 '09 at 15:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.