how to send a list through json
                            
                         
                        
                     
                 
                
                    public ActionResult Getcompvalues(int compitatorid)<br />        {<br />            List<tbl_CompetitorDetail> loadcompdata = new tbl_CompetitorDetail().Compdetaillist();<br />            var complist = loadcompdata.Select(x => x).Where(x => x.EntryId ==compitatorid).ToList();<br /><div>             return Json (complist,JsonRequestBehavior.AllowGet);</div><div> </div><div> </div><div>this is my code i cannot send a list to ajax sucess(e)object</div>