Linq-to-SQL question

Posted by c11ada on Stack Overflow See other posts from Stack Overflow or by c11ada
Published on 2010-03-28T13:21:17Z Indexed on 2010/03/28 13:23 UTC
Read the original article Hit count: 419

Filed under:
|

hey all,

im really new to linq-to-SQL so this may sound like a really dumb question, i have the following code

    var query = from p in DC.General
                where p.GeneralID == Int32.Parse(row.Cells[1].Text)
                select new
                {
                    p.Comment,
                };

how do i got about getting the result from this query to show in a text box ??

© Stack Overflow or respective owner

Related posts about ASP.NET

Related posts about linq-to-sql