0
votes
1answer
40 views
Can I use ADO.NET Data Services with a LINQ-to-DataSet data source?
We have an existing application that relies heavily on stored procedures and untyped DataSets. I'd like to maintain that flexibility, but leverage the REST capabilities of ADO.NET …
0
votes
2answers
148 views
DataTable.AsEnumerable().Distinct() doesn’t work because of primary key column
I want to remove duplicates from my DataTable so I'm using DataTable.AsEnumerable().Distinct(DataRowComparer.Default) but it doesn't do what I need. I think because each duplicate …
0
votes
3answers
212 views
select column from dataset using LINQ
Hi,
I am absolutely new to linq query, please help with this query,
dataset has fields:
Name Value Client_owner.
I want to select Value if name == "searchtext"
Data …
0
votes
1answer
63 views
Precision problem with LINQ to dataset in VB.Net — Double invalid cast exception
I am having some trouble with a LINQ to dataset query. I have the problem that data is returned to the dataset as a double and could be null. When I get the data into my LINQ que …
2
votes
6answers
1k views
Linq to SQL or Linq to DataSet?
I am new to Linq world and currently exploring it. I am thinking about using it in my next project that involves database interaction.
From whatever I have read, I think there are …
1
vote
1answer
49 views
Chaining databound LINQ queries in LINQ to DataSet
I am trying to perform a query on a query result, but I am getting an error: “The method or operation is not implemented”. Can I chain queries in this way?
For example, I have a No …
0
votes
1answer
264 views
join between two tables with linq to datasets
i want to create a join between two tables and that the result will include all the two tables columns.
i want to do this without specifying the specific column names, just do sele …
0
votes
0answers
392 views
LINQ to Dataset - Handle NULL in WHERE clause
I have 2 tables as the primary data;
**Table - Agent**
aid name
-------------
1 a
2 b
3 c
4 d
5 e
**Table - Event**
eid event
-------------
1 aaaa
2 bbbb
5 NULL
…
1
vote
2answers
66 views
LINQ to DataSets for MySQL Interop
I'm building an application that must support MSSQL and MySQL databases. To avoid duplication of stored procedures etc., I'm considering using the Data Access Application Block to …
0
votes
1answer
442 views
LINQ to DATASET update with a stored procedure
I have used LINQ to SQL with a update stored procedure to update databases in the past. I wanted to know if there is anything similar in LINQ to Dataset
An example of the LINQ to …
0
votes
2answers
504 views
How can I use Linq with Dataset.xsd files?
How can I use Linq with Dataset.xsd files?
I've looked at Linq-to-Datasets and Linq-to-XSD but they don't really seem to work directly with the Visual Studio DataSet.xsd files.
E …
1
vote
1answer
186 views
Specifying return rows in LINQ2DataSet
I have a requirement to extract a distinct subset of rows from a DataTable, and thought LINQ2DataSets may be a useful and clean way to do this, however it appears that it is not po …
