Top "Datatable" questions

The term "datatable" is ambiguous.

How can I pass selected row to commandLink inside dataTable or ui:repeat?

I'm using Primefaces in a JSF 2 application. I have a <p:dataTable>, and instead of selecting rows, I …

jsf jsf-2 datatable parameter-passing commandlink
How do I loop through rows with a data reader in C#?

I know I can use while(dr.Read()){...} but that loops every field on my table, I want to retrieve …

c# asp.net datatable
Inner join of DataTables in C#

Let T1 and T2 are DataTables with following fields T1(CustID, ColX, ColY) T2(CustID, ColZ) I need the joint …

c# join datatable inner-join
Best way to remove duplicate entries from a data table

What is the best way to remove duplicate entries from a Data Table?

c# .net datatable duplicate-data
Get Value of Row in Datatable c#

i have a problem with my code. foreach (DataRow dr in dt_pattern.Rows) { part = dr["patternString"].ToString(); if (part != …

c# datatable gradient datarow
Find a value in DataTable

Is there a way to find a value in DataTable in C# without doing row-by-row operation? The value can be …

c# datatable
How to fill a datatable with List<T>

How can convert a list to a datatable [Serializable] public class Item { public string Name { get; set; } public double Price { …

c# ado.net datatable
Merge 2 DataTables and store in a new one

If I have 2 DataTables (dtOne and dtTwo) and I want to merge them and put them in another DataTable (dtAll). …

c# datatable
DataTable, How to conditionally delete rows

I'm engaged in a C# learning process and it is going well so far. I however just now hit my …

c# datatable delete-row
How to bind DataTable to Datagrid

I have a problem binding a DataTable to a DataGrid. I have already searched for solutions but just can't get …

c# wpf datagrid datatable