Search Results

4
votes
5answers
289 views

Your Favorite LINQ-to-Objects Queries

With LINQ, a lot of programming problems can be solved more easily - and in fewer lines of code. What are some the best real-world LINQ-to-Objects queries that you've writt …
3
votes

Expression.Invoke in Entity Framework?

PredicateBuilder and LINQKit now suppo …
2
votes

LINQ Query Syntax to Lambda

Simply go: string lambdaSyntax = query.Expression.ToString(); The disadvantage compared to LINQPad is that the result is formatted all one line. …
11
votes

Which LINQ syntax do you prefer? Fluent or Query Expression

Neither is better: they serve different needs. Query syntax comes into its own when you want to leverage multiple range variables. This happens in three situations: W …
0
votes

linq match word with boundaries

For efficiency, you want to do as much of the filtering as possible on the server, and then the rest of the filtering on the client. You can't use Regex on the server (SQL Server doesn't support it …
1
vote

linq multiple columns; getting weird results

That query looks OK - what results were you expecting? Btw, here's a simpler way to write the same query: var results = m.PlacesBeen.Select (loc => new {locs.Lat, locs …