Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created a LINQ query to fetch the data from datarow and select the expression(col1+col2 as colName). eg:

var exp=(from a in dr select new {columnName= e.Expression});

where 'e' comes under foreach loop of expressions. I am not sure whether the following query is correct as I have just started learning LINQ. Kindly help me to execute the query to fetch proper result and set the data into a datatable.

Code is as follows:

DataTable datatatable= new DataTable( );
xmlDatatset.ReadXml(dbProperties.FileName);
datatable=xmlDataset.Tables[relationObj];
DataRow[] dr=datatable.Select(filtercriteria);
foreach(DataRow datarow in dr)
{
var exp=(from a in dr select new {columnName= e.Expression});
}

Requirement- I have a XML file with tables and column details. the data from xml is got into a datatble on which the filtercriteria is set and the result is fetched. I have to do grouping, aggregate function and expressions.

share|improve this question
Why don't you post the linq query so we can see what you've got so far. – jlnorsworthy Mar 27 '11 at 17:21
Foreach (Expressions e in expressionObj) { var exp=(from a in dr select new {columnName= e.Expression}); } - I am not getting the any data except the values of 'columnName=SumID' , e.Expression=ID+ID. – pKumar Mar 27 '11 at 17:23
I'm pretty sure this does not do what you expect, but you should paste more surrounding code to make it clearer what are trying to do. You could also make an example of input and especially the output you expect. – Albin Sunnanbo Mar 27 '11 at 17:25
click the edit link and update your original question instead of adding your code in a comment, in a comment it is totally unreadable. – Albin Sunnanbo Mar 27 '11 at 17:26
@jinorsworthy- I have 3 records in dr(Datarow).I need to add an extra column for the expression as SUMID=ID+ID and get the data into a datatable. – pKumar Mar 27 '11 at 17:27

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.