Just getting my head around all this LINQ stuff and it seems I'm stuck at the first hurdle.

I have a datatable as such:

OrderNo     LetterGroup Filepath
----------- ----------- --------------------------------------------------
0           0           Letters/SampleImage.jpg
0           0           Letters/UKPC7_0.jpg
0           0           Letters/UKPC8_0.jpg

What I need is to get all of the filepaths from the Filepath column into a String array. I thought LINQ would be perfect for this (am I right?), but can't seem to construct the correct query.

Can anyone provide some code samples that would point me in the right direction? I have searched around - but don't seem to be getting anywhere.

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

There are extension methods which make working with data sets much easier:

using System.Data.Linq;

var filePaths =
    from row in dataTable.AsEnumerable()
    select row.Field<string>("Filepath");

var filePathsArray = filePaths.ToArray();

You can also use the method syntax to put it in one statement:

var filePaths = dataTable
    .AsEnumerable()
    .Select(row => row.Field<string>("Filepath"))
    .ToArray();
link|improve this answer
I went with the top example - thank you very much @Bryan – m.edmondson Dec 14 '10 at 9:18
feedback
string[] filePaths = (from DataRow row in yourDataTable.Rows 
                     select row["Filepath"].ToString()).ToArray();
link|improve this answer
This isn't using LINQ at all. – poindexter12 Dec 13 '10 at 20:59
2  
@poindexter12 - What? Sure looks like LINQ to me. – jfar Dec 13 '10 at 21:01
@jfar: This is technically LINQ syntax, so I removed my down vote. However, in the spirit the question, I think there was a little more that could be explained. – poindexter12 Dec 13 '10 at 21:03
@poindexter, the OP asked how to utilize LINQ to query his dataset, he did not ask how to completely revamp his data access strategy. This is certainly a classic use of LINQ-to-Objects. You would have him go to a LINQ-to-Entities (or equivalent) model. – Anthony Pegram Dec 13 '10 at 21:05
I agree on all counts, I would have him go LINQ to Sql. – poindexter12 Dec 13 '10 at 21:08
feedback

If you want to use LINQ all the way, set up your database and create a context object. Then you should be able to do something like this:

 var filepaths = from order in _context.Orders
                 select order.Filepath;

This is assuming your table for the row is named Orders, which I guess by your first column name of order. If you wanted to return a set of the order numbers as well for using later to know where the file path came from you could do something like so:

var results = from order in _context.Orders
              select new
              {
                  order.OrderNo,
                  order.Filepath
              }

This would give you a new anonymous type that contained both those values as properties.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.