Upcoming Linq stories

A LINQ Style Range Generator(www.blackwasp.co.uk)

submitted by BlackWaspBlackWasp(4212) 1 month, 25 days ago

Language-Integrated Query (LINQ) provides the Enumerable.Range method that generates incrementing sequences of integers. This article describes a similar method that allows the creation of more complex ranges with the repeated application of a function. read more...

add a comment |category: |Views: 5

tags: another

Multiple where clauses in Linq(www.tkglaser.net)

submitted by tkglasertkglaser(132) 2 months, 17 days ago

This might be common knowledge but I discovered today, that you can have as many where clauses in Linq as you like. Makes a Linq query look even cleaner (IMHO). read more...

add a comment |category: |Views: 23

tags: another

Shuffle in linq (part 2)(csharpsimple.blogspot.com)

submitted by manudeamanudea(53) 4 months, 12 days ago

There are many times when we need to randomly sort a list or array. read more...

1 comment |category: |Views: 16

tags: another

Shuffle in Linq(csharpsimple.blogspot.com)

submitted by manudeamanudea(53) 4 months, 12 days ago

A simple implementation for shuffling a list in linq. read more...

add a comment |category: |Views: 9

tags: another

Sequence contains no elements : LINQ error(techbrij.com)

submitted by urenjoyurenjoy(337) 5 months, 10 days ago

Learn how to fix linq and lambda expression error "Sequence contains no elements" read more...

add a comment |category: |Views: 12

tags: another

I've Left Query Analyzer Hell for LINQPad Heaven(terryaney.wordpress.com)

submitted by snickers5x5snickers5x5(254) 5 months, 18 days ago

extensions for linqpad read more...

add a comment |category: |Views: 16

tags: another

LINQ Pitfalls: Using external variables in projections(notherdev.blogspot.com)

submitted by notherdevnotherdev(238) 6 months, 11 days ago

One issue with NHibernate.Linq provider that surprised me a lot is about variables (or constants) that appear in Select expressions. It seems that you can use it, but once only! Otherwise you'll experience pretty nasty silent fail. read more...

2 comments |category: |Views: 9

tags: another

NHibernate.Linq Pitfalls: Order of operators(notherdev.blogspot.com)

submitted by notherdevnotherdev(238) 6 months, 21 days ago

When writing SQL queries you need to put all the clauses in particular order that is enforced by the SQL language itself and somehow relates with how the RDBMS is going to process the query. When writing NHibernate's LINQ queries, the rules generally still apply. read more...

add a comment |category: |Views: 4

tags: another

entity framework a super dataset(www.codewrecks.com)

submitted by devsoftxdevsoftx(5) 6 months, 21 days ago

Is entity framework a super dataset? read more...

add a comment |category: |Views: 2

tags: another

NHibernate.LINQ Pitfalls: Nested queries(notherdev.blogspot.com)

submitted by notherdevnotherdev(238) 7 months ago

NHibernate's LINQ provider is very easy to start with and sufficient for majority of use cases, but when used in more complex scenarios it can mislead and surprise. Here is one of the pitfalls (or perhaps bugs?) I've recently run into. read more...

add a comment |category: |Views: 6

tags: another

Linq Join on Mutiple columns using Anonymous type(www.codegain.com)

submitted by codegaincodegain(2794) 7 months, 14 days ago

I was working on the project using LINQ. I got the requirement to join the two entity on multiple column. read more...

add a comment |category: |Views: 8

tags: another

Filter a DataTable with LINQ to Objects(www.jphellemons.nl)

submitted by jphellemonsjphellemons(269) 7 months, 23 days ago

Filtering a datatable object with linq without entity framework and thus typesafe columns read more...

add a comment |category: |Views: 4

tags: another

WHERE IN (Value1, Value2, Value3, Value4, Value5 …) query using Linq(www.aspxtutorial.com)

submitted by composemecomposeme(919) 8 months, 24 days ago

This example demonstrates how to check multiple values using Linq to find out the required result... read more...

add a comment |category: |Views: 14

tags: another

LINQ TO SQL GridView (Enhanced Gridview) (www.dotnetlogix.com)

submitted by dotnetlogixdotnetlogix(524) 8 months, 27 days ago

LINQ TO SQL GridView read more...

add a comment |category: |Views: 10

tags: another

How to use Any Method with Collection in LINQ(www.codegain.com)

submitted by codegaincodegain(2794) 9 months, 4 days ago

In this article, I will share with you, how to use the Any method in LINQ.We can use this method in two differen ways, one is with collection and another one is without collection. read more...

add a comment |category: |Views: 4

tags: another

Ordering data in LINQ queries by more than one column(www.dotnetlogix.com)

submitted by dotnetlogixdotnetlogix(524) 9 months, 6 days ago

In this post I am going to show how to do ordering when you require to order data by using multiple columns. read more...

add a comment |category: |Views: 1

tags: another