Tagged Questions

0
votes
3answers
308 views

C# - Using DataAdapter to Update SQL table from a DataTable -> SQL table not updating

I select * from an Excel spreadsheet into dt. I want to take those values and update the SQL table. (the SQL table exists because of a manual import to SQL from the original Excel spreadsheet, has a ...
0
votes
1answer
222 views

Check if row is new in CollectionViewSource

I have a CollectionViewSource (cvs) which has strongly typed DataTable as it's source. Cvs.View is set as DataGrid's ItemsSource. I want to update, insert and delete data from a database based on ...
0
votes
7answers
1k views

How to delete all rows from datatable

I want to delete all rows from datatable with rowstate property value Deleted. DataTable dt; dt.Clear(); // this will not set rowstate property to delete. Currently I am iterating through all rows ...
0
votes
1answer
757 views

Issue with DataRow state in DataTable

I have a very strange requirement using DataTable. I have a datatable with some columns. Nwo whenever there is any change in any of the DataRow in the datatable; then the state of DataRow is set to ...