linq

  1. S

    Data Table - The type or namespace name 'DataSetExtensions' does not exist in the namespace 'System.Data'(are u missing an assembly reference?)

    Hi Team, I am trying to filter excel column "Filter Flag" with the value "Y" , using Data Table option for this but the code giving this kind of error. outData = new DataTable(); if(inData.Rows.Count > 0) { var result = inData.AsEnumerable().Where(row=>row["Filter Flag"].ToString() ==...
  2. V

    c# code stage to sum all rows in one of column in a collection

    need c# (linq) code stage, to sum all rows in one of column in a collection, i want to use linq as i have huge number of records here i had "amount" as a column the output should in a text or number i.e 1234+4321+0099+9900 = 15554
Top