linq
-
what is linq. whay it is used for.
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
-
what is linq. whay it is used for.
Read Professional LINQ book.
-
what is linq. whay it is used for.
-
what is linq. whay it is used for.
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
-
what is linq. whay it is used for.
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:
-
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:
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:
-
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:
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
-
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
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:
-
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:
-
what is linq. whay it is used for.
LINQ is the Language Integrated Query: http://en.wikipedia.org/wiki/Language_Integrated_Query[^]