Top "Datatable" questions

The term "datatable" is ambiguous.

How can I add a new column and data to a datatable that already contains data?

How do I add a new DataColumn to a DataTable object that already contains data? PseudoCode //call SQL helper class …

c# datatable datarow
Best way to check if a Data Table has a null value in it

what is the best way to check if a Data Table has a null value in it ? Most of the …

c# .net validation datatable null
How to calculate the sum of the datatable column in asp.net?

I have a DataTable which has 5 columns: ID Name Account Number Branch Amount The DataTable contains 5 rows. How can I …

c# asp.net user-controls datatable
DataTable: Hide the Show Entries dropdown but keep the Search box

Is it possible to hide the Show Entries dropdown but keep the Search box in DataTable? I want to always …

datatable dt
How to insert a data table into SQL Server database table?

I have imported data from some Excel file and I have saved it into a datatable. Now I'd like to …

c# sql-server datatable
Check if value exists in dataTable?

I have DataTable with two columns Author and Bookname. I want to check if the given string value Author already …

c# datatable
Convert JSON to DataTable

I have JSON in the following format: [ {"id":"10","name":"User","add":false,"edit":true,"authorize":true,"view":true}, {"id":"11","name":"…

c# json datatable
How to add New Column with Value to the Existing DataTable?

I have One DataTable with 5 Columns and 10 Rows. Now I want to add one New Column to the DataTable and …

c# asp.net .net visual-studio-2008 datatable
Convert DataTable to List<T>

I have an strongly typed DataTable of type MyType, I'd like convert it in a List<MyType>. How …

c# .net generics datatable
C# - Fill a combo box with a DataTable

I'm used to work with Java where large amounts of examples are available. For various reasons I had to switch …

c# .net combobox datatable sharpdevelop