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.