In my project there are two datatables dtFail
and dtFailed
(dtFailed
has nothing but column names declarations). dtFail
has duplicate "EmployeeName" column values. so i took a dataview dvFail
and did the process to make them distinct as shown in the below code:
dtFail
I tried the below code:
DataView dvFail = new DataView(dtFail);
dtFail = dvFail.ToTable(true, "EmployeeName"); //showing only one column in dtFail
dtFailed (only one column)
If i do like below
DataView dvFail = new DataView(dtFail);
dtFail = dvFail.ToTable(true, "EmployeeName","EmployeeRole","Status");
dtFailed (showing but with duplicate rows)
Then the datatable dtFailed
is storing duplicate "EmployeeName" also.
Please Help
Thanks in Advance.