0
votes
1answer
696 views

VB.Net Linq-To-DataTable search DataTable with values from another table

I'm trying to search one DataTable with values from anotherDataTable using LINQ, but no progress so far... How to do it? In example below i have table, in which i search, and PlTable, which has only ...
-1
votes
1answer
180 views

Get particular column from datatable

I need particular columns from datatable to bind it in DataGridView. I have following column. Work1     Price     Area     que   Len ...
0
votes
0answers
124 views

Split Datatable with large column into Child Datatables columnwise with one column fixed

I have large datatable with atleast 50 columns. first column contains the description of row data i.e In 1st column, row data is the header for the rows so i want to keep the 1st column ...
3
votes
3answers
245 views

AsEnumerable().Take

I want to take fist n number of records from a data table. I don't want to run a loop which I already know. I'm trying to do this DataTable dt = dtResult.AsEnumerable().Take(n) is the right ...
2
votes
2answers
536 views

How to filter a DataTable by values not contained in an array?

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 ...
0
votes
2answers
819 views

Converting an entity model to a dataset - can this be done?

Very frustrated here ... I can usually find an answer of some kind to complex issues in .Net somewhere on the net, but this one eludes me. I'm in a scenario where I have to convert the result of a ...
0
votes
2answers
2k views

not able to use CopyToDataTable in linq for returning dataset

how to return a dataset from linq in .net 3.5? I have seen in some sites that CopyToDataTable method is used but I am not able to use that methos as I cannot find System.data.datatableextensions ...
0
votes
2answers
2k views

DataTable.AsEnumerable().Distinct() doesn't work because of primary key column

I want to remove duplicates from my DataTable so I'm using DataTable.AsEnumerable().Distinct(DataRowComparer.Default) but it doesn't do what I need. I think because each duplicate row has it's unique ...