Top "Datarow" questions

DataRow is an ADO.

Change Datarow field value

First I have last update file from DB DataTable excelData = ReadSCOOmega(lastUploadFile); , after this iterate over this data foreach (DataRow …

c# excel datarow
Check if a column with a given name exists in a datarow

How can I check if a column exists in result that populate a listview? The listview is populated from a …

c# asp.net listview data-binding datarow
Add Columns to new DataRow

Is it possible to create a new DataRow object and add columns to it at runtime? // How can I specify …

asp.net .net datarow
Setting value of an item in a DataRow does not work

I am trying to convert all DateTime values in a DataTable to strings. Here is the method I use: private …

c# datarow
difference between getting value from DataRow

Sample code: DataTable table = new DataTable(); // ... // insert column to table table.Columns.Add("name"); // ... // insert value to table foreach (DataRow …

c# datatable datarow
DataTable select method with single quote conflict C#

I recently found when I do a LINQ select under a field that contains an apostrophe, it makes my application …

c# linq select datarow apostrophe
How can I assign a DBNull in a better way?

I need to parse a value from a DataRow and assign it to another DataRow. If the input is valid, …

c# .net parsing datarow dbnull
Adding Datarow between Rows?

how can i add rows between existing rows in a datatable ? Thanks

c# datatable datarow
Why ItemContainerGenerator.ContainerFromIndex() returns null and how to avoid this behavior?

I'm using this snippet to analyze the rows I've selected on a datagrid. for (int i = 0; i < dgDetalle.Items.…

c# .net wpf datagrid datarow
compare datarows of different tables

I posted a similar query some time ago and decided to trim down the complexity of it to let developers …

c# winforms c#-4.0 datatable datarow