Hy!

I have a select in entity sql that returns simple strings, and i should concatenate to a string.

select (p.X + p.Y) from ExampleEntities.ExampleTable as p
group by p.X, p.Y

For example it returns 3 string and i should concatenate it to 1 string.

Thank you for all helps! Gabor

link|improve this question
feedback

1 Answer

I'm not sure if you want to concatenate all rows or per row, but this is a per row solution:

from p in ExampleEntities.ExampleTable
select string.Concat(p.X, p.Y, p.Z)

If you want a single result you'll need the following:

var temp = (from p in ExampleEntities.ExampleTable
            select string.Concat(p.X, p.Y, p.Z)).ToList();

string result = temp.Aggregate((current, next) => current + next);
link|improve this answer
So i want to concatenate all the "example select" rows to 1 string. – user682157 Mar 29 '11 at 16:23
Yes its a good idea, but you use linq, and i should do this in entity sql. – user682157 Mar 30 '11 at 16:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.