c# - PLINQ for DataTables -


is possible apply plinq next code:

            var query = x in table1.asenumerable()             join y in table2.asenumerable() on              x.field<string>("field1").tolower() equals              y.field<string>("field1").tolower()             (x.field<bool>("field2") == false)             select x;              foreach (var row in query)             row.setfield<bool>("field2", true); 

any improving advances appreciated lot.


Comments

Popular posts from this blog

haskell - Using filter on an item in a list? -

tomcat6 - Exception when stopping container for a with Spring + Quartz + Tomcat web application -

c# - Binding attached property to IEnumerable -