0
votes
2answers
92 views
Rewriting this code cleaner using LINQ?
Here is a simplified version of the code I use:
class Program
{
// Here is the ugly stuff
static void DoStuff(int[] uidArray)
{
int chunkCount = (int)Math.Ceil …
2
votes
4answers
140 views
Basic LINQ syntax
Lets say you have an XML like like this:
<data>
<messages>
<message name="Person" id="P">
<field name="FirstName" required="Y" />
<field n …
3
votes
6answers
152 views
C# - code against a property using the property name as a string
What's the simplest way to code against a property in C# when I have the property name as a string? For example, I want to allow the user to order some search results by a propert …
0
votes
2answers
65 views
What was the name of the parallel implementation of Linq (not from Microsoft)
I remember seeing a link about it here where some people claimed it's 1000 times faster than the BCL Linq.
Anyone used it here? Is it true?
Also is Microsoft's PLinq gonna be alo …
1
vote
1answer
50 views
what is the easiest way to have multiple db connections when using linq
Optimally I would like linq to use X database connections instead of 1 to speed things up.
The only way now is to open X connections, and create X databasecontexts, and associate …
0
votes
2answers
49 views
how does linq2sql keep track of database objects?
Hi,
When using Linq2sql everything automagically works. My experience is that going with the flow is not always the best solution and to understand how something internally works …
1
vote
2answers
98 views
How to populate IEnumerable in Lambda expression?
I just cannot get this to work, would appreciate if someone can help.
So I get back an XML result from a database which looks like:
<matches>
<issuer client_name="MTR" …
3
votes
3answers
93 views
Enumerable.Cast<T> extension method fails to cast from int to long, why ? [closed]
Possible Duplicate:
Puzzling Enumerable.Cast InvalidCastException
Hi,
I just noticed something quite strange with the Enumerable.Cast<T> extension method... It seem …
3
votes
3answers
110 views
Functionally traversing a tree in C#
Consider the following extension method in c#, Traverse:
IEnumerable<T> Traverse<T>( this IEnumerable<T> source,
Func<T, IEnume …
3
votes
4answers
134 views
How can I turn this 12-line method into a 1-line LINQ expression?
How can I replace ConvertListToString(extensions) with an elegant LINQ statement?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace …
0
votes
2answers
38 views
Linq expression to filter formcollection
I have a FormCollection and I just want to only iterate through the keys the do not contain the string pricing.
So what I tried was this...
foreach (var key in collection.AllKeys …
0
votes
2answers
21 views
linq to xml select
hi i have an xml like this
<?xml version="1.0"?>
<DataSetExchangeWMS xmlns="http://tempuri.org/DataSetExchangeWMS.xsd">
<dtObjektInfo>
<LanguageCode> …
1
vote
3answers
25 views
How to write linq to get data from different tables?
Suppose I have 3 tables: A(aid, ...), B(bid, ...) Relationship(aid, bid, ...)
Then I have a aid as parameter, I want to get the result from b. If use SQL, will be like
select b.* …
0
votes
1answer
15 views
Encoding in linq/entity framework
I'm working on a legacy where some fields uses special encodings. Is it somehow possible to set an decode the fields in the linq instead of doing as I'm doing now:
XisoEncoding en …
1
vote
1answer
27 views
Linq query from 3 tables using Joiner table
I have 3 tables, Customer, Surfboards, and CustomerSurfboards. CustomerSurfboards is the Joiner table.
Customer CustomerSurfBoards Surfboards
---------- ----------- …
