If I have a DataTable userwidget, which has the following columns:

process_id, emp_num, widget_color

How to filter this DataTable using LINQ according to the following conditions:


1- WHERE emp_num = ...

2- AND process_id NOT IN (process)//process is an array of intgers

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted
var filtered = (from row in tbl.AsEnumerable()
               where row.Field<int>("emp_num")==yourNum
               && !process.Contains(row.Field<int>("process_id"))
               select row).CopyToDataTable();
link|improve this answer
Thanks a lot ..... – just_name Feb 21 at 14:14
1  
Hi handsome man, so good!+1 – Mackintoast Feb 21 at 14:17
feedback

Use, where <list>.Contains( <item> )

 var lstprocessid = {1, 2, 3};
  var   rows =
        (from datatable in dtDetails.AsEnumerable()
          where !lstprocessid.Contains(int.parse((datatable["process_id "]).ToString())
              &&  int.parse((datatable["emp_num"]).ToString())== myemp_num     
                     select datatable).ToList<DataRow>();
link|improve this answer
this is a datatable.. – just_name Feb 21 at 14:00
1  
@just_name - check updated answer will do your task...and you can also add other conction as you want.... – Pranay Rana Feb 21 at 14:06
Thanks a lot ..... – just_name Feb 21 at 14:14
feedback

Your Answer

 
or
required, but never shown

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