I have this LINQ code:
And I want to display the results into a RichTextBox.Code:var ang = from employee e1 in db.employees orderby e1.hire_date descending select new { e1.fname, e1.lname, e1.hire_date };
I tried richTextBoxname.toString() but obviously did not worked.
Can anyone explain me how to display results in the richtextbox, since
I am not very familiar with C#.
Thank you.




Reply With Quote