Tagged Questions
0
votes
1answer
70 views
Sort a typed data set [duplicate]
I have a server-client architecture for a reporting tool,
where the server generates a report and the client displays it.
I have a created a strongly typed data set with one table, and filled it with ...
0
votes
1answer
140 views
LINQ - SelectMany with Strongly-typed DataSets
I have the following query that returns exactly what I need,
var dataRows =
(from headerLocationRow in headerLocationDataTable
select ...
0
votes
2answers
619 views
convertion issue with DateTime being null in a LINQ query
Here is the configuration of my datatables that I use in my linq query:
I have 2 dataset files (all the columns of all the tables have a DataType specified and their AllowDbNull property set to True):
...
0
votes
3answers
1k views
How to perform a Linq “First” query on a strongly-typed DataTable object?
I'm trying to perform a simple Linq "find first" query on a typed DataTable, but cannot seem to get the syntax correct.
(If I don't use typed data table/row objects, things work just fine.)
I have ...
0
votes
2answers
2k views
Can you sort Typed DataSet DataTables with Linq OrderBy?
I have a Typed DataSet DataTable which inherits TypedTableBase<T>, which in turn implements IEnumerable<T>. I can't seem to get this to work.
myDataTable.OrderBy(x => x.ID).ThenBy(y ...
2
votes
1answer
1k views
Can I use Linq to project a new typed datarow?
I currently have a csv file that I'm parsing with an example from here:
http://alexreg.wordpress.com/2009/05/03/strongly-typed-csv-reader-in-c/
I then want to loop the records and insert them using a ...
1
vote
2answers
1k views
LINQ Query Returning No Value
I'm currently trying to run a LINQ query over a MS SQL database. This is what I have done.
I can see the database, the table, and the data inside if i want to via the Server Explorer.
I've created ...
