Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. LINQ
  4. linq

linq

Scheduled Pinned Locked Moved LINQ
csharplinqquestion
11 Posts 8 Posters 15 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Sukanta2012
    wrote on last edited by
    #1

    what is linq. whay it is used for.

    L A M S T 6 Replies Last reply
    0
    • S Sukanta2012

      what is linq. whay it is used for.

      L Offline
      L Offline
      Lost User
      wrote on last edited by
      #2

      Typing your question, or rather simply the word LINQ, into Google, reveals lots of information[^].

      Programming is work, it isn't finger painting. Luc Pattyn

      1 Reply Last reply
      0
      • S Sukanta2012

        what is linq. whay it is used for.

        A Offline
        A Offline
        AmitGajjar
        wrote on last edited by
        #3

        Read Professional LINQ book.

        1 Reply Last reply
        0
        • S Sukanta2012

          what is linq. whay it is used for.

          L Offline
          L Offline
          Lost User
          wrote on last edited by
          #4

          http://msdn.microsoft.com/en-us/library/bb397897.aspx[^] is a great place to start.

          1 Reply Last reply
          0
          • S Sukanta2012

            what is linq. whay it is used for.

            M Offline
            M Offline
            mr priyank
            wrote on last edited by
            #5

            linq is a language feature of c#(.net language) that enables you to fire query over any collection such as array. Ex

            int[] numArray = { 1, 2, 3, 4, 5, 6, 7 };

                    var query = from num in numArray
                                where num > 5
                                select num;
                    var filteredArray = query.ToArray();
                    foreach (var item in filteredArray)
                    {
                        MessageBox.Show(item.ToString());
                    }
            

            //MessageBox will appear twice with value 6 and 7 //the query is a linq query

            1 Reply Last reply
            0
            • S Sukanta2012

              what is linq. whay it is used for.

              S Offline
              S Offline
              Shelby Robertson
              wrote on last edited by
              #6

              He was a character in a popular video game franchise that started in the 1980s.

              CPallini wrote:

              You cannot argue with agile people so just take the extreme approach and shoot him. :Smile:

              S 1 Reply Last reply
              0
              • S Shelby Robertson

                He was a character in a popular video game franchise that started in the 1980s.

                CPallini wrote:

                You cannot argue with agile people so just take the extreme approach and shoot him. :Smile:

                S Offline
                S Offline
                Shelby Robertson
                wrote on last edited by
                #7

                I must have missed the no jokes in the programming forums rule.

                CPallini wrote:

                You cannot argue with agile people so just take the extreme approach and shoot him. :Smile:

                P C 2 Replies Last reply
                0
                • S Shelby Robertson

                  I must have missed the no jokes in the programming forums rule.

                  CPallini wrote:

                  You cannot argue with agile people so just take the extreme approach and shoot him. :Smile:

                  P Offline
                  P Offline
                  Pete OHanlon
                  wrote on last edited by
                  #8

                  Did you miss the joke icon when you posted the joke? Nevermind, I've just 5ed to compensate.

                  *pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

                  "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                  CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

                  S 1 Reply Last reply
                  0
                  • P Pete OHanlon

                    Did you miss the joke icon when you posted the joke? Nevermind, I've just 5ed to compensate.

                    *pre-emptive celebratory nipple tassle jiggle* - Sean Ewington

                    "Mind bleach! Send me mind bleach!" - Nagy Vilmos

                    CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

                    S Offline
                    S Offline
                    Shelby Robertson
                    wrote on last edited by
                    #9

                    As a matter of fact I did. Forgot that it defaults to "Answer". Whoops.

                    CPallini wrote:

                    You cannot argue with agile people so just take the extreme approach and shoot him. :Smile:

                    1 Reply Last reply
                    0
                    • S Shelby Robertson

                      I must have missed the no jokes in the programming forums rule.

                      CPallini wrote:

                      You cannot argue with agile people so just take the extreme approach and shoot him. :Smile:

                      C Offline
                      C Offline
                      csizo
                      wrote on last edited by
                      #10

                      missclicked my vote 1... :(

                      1 Reply Last reply
                      0
                      • S Sukanta2012

                        what is linq. whay it is used for.

                        T Offline
                        T Offline
                        Thomas Daniels
                        wrote on last edited by
                        #11

                        LINQ is the Language Integrated Query: http://en.wikipedia.org/wiki/Language_Integrated_Query[^]

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • World
                        • Users
                        • Groups