Tagged Questions
The datarowcollection tag has no wiki summary.
4
votes
3answers
226 views
Will Microsoft ever make all collections useable by LINQ?
I've been using LINQ for awhile (and enjoy it), but it feels like I hit a speedbump when I run across .NET specialized collections(DataRowCollection, ControlCollection). Is there a way to use LINQ ...
3
votes
2answers
8k views
Convert DataRowCollection to DataRow[]
What's the best performing way to convert a DataRowCollection instance to a DataRow[]?
1
vote
2answers
344 views
Map RowDataCollection to DTO using AutoMapper
Is there a way to map a RowDataCollection to DTO using AutoMapper?
Here is a scenario: DataRow to Object
user.UserId = row["UserId"];
user.UserName = row["UserName"];
1
vote
3answers
3k views
How to get columns from datarow?
I have row collection. (DataRow[] rows)
And i want to import all rows to another DataTable (DataTable dt)
BUT HOW !?
DataTable dt;
if (drs.Length>0)
{
dt = new ...
0
votes
1answer
27 views
How to use TypedDataTable.Rows.Find(key as object) to find a row which has a composite key?
I have a TypedDataTable called CamerasDT which has a composite Primary Key of GroupId and CameraId. I want to use TypedDataTable.Rows.Find(key as object) to return a specific row by GroupId and ...
0
votes
0answers
129 views
MiniProfiler “The given DataRow is not in the current DataRowCollection.”
I've managed to get MiniProfiler to mostly work with MVC2 + EF 4.1 + EFProviderWrapperToolkit. It does show the EF profile now. I set up the EF profiler in the standard way:
var sqlConnection = new ...
0
votes
1answer
117 views
Why does DataTable.Rows not have a .Where() method?
I like the syntax offered by the .Where() method that is available for many collections. However, I've noticed that it is conspicuously absent from some collections.
I'm sure that this has to do ...