I am creating list using linq in c# as following way and it works fine.
lst = (from n in dbEntity.Popup_Notes
select n).ToList();
Now, I want to use this list from client side as array of objects. When user clicks on links, it will display specific notes descriptions as per name selection.
EDIT
i want something like this..
