hi,
plz tell the select command of linq in asp.net
i know all sql command , but linq dont know.

>select command of linq in asp.net

Here is the best doc of Linq.

List<int> nos = new List<int>()
            {
                1,-2,33,4,2,-44,22,33,44
            };

            var positiveNos = from no in nos
                              where no > 0
                              select no;

            foreach (var v in positiveNos)
                Response.Write("Value :" + v);
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.